Windows 模拟程序中的点击
我想创建一个在 Outlook 2007 中格式化签名的程序。
用户只需启动 Outlook。它将搜索有关用户的信息,然后自动创建签名。 用户不必打开任何菜单,程序会为他做这件事。
我想知道用什么语言可以很容易地创建这种程序?
谢谢
I'd like to create a program which format signature in Outlook 2007.
The user will only have to lauch Outlook. It will search informations about the user, then will create automatically the signature.
The user wouldn't have to open any menu, the program will do it for him.
I'd like to know what language will be easy to use to create this kind of program ?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想说你不应该模拟点击,而应该生成一个自动签名文件,然后用户可以加载该文件。
编辑:
Windows签名的文件格式为
.txt
、.htm
和.rtf
。所有这些都是有很好记录的格式,并且应该很容易生成。它们应保存在c:\Users\username\AppData\Roaming\Microsoft\Signatures
中。 Outlook 以所有三种格式保存每个签名,大概是为了可移植到其他应用程序和单独的电子邮件设置(例如,用户是否使用HTML
)。I'd say you shouldn't be simulating clicks, instead you should just generate an automated signature file which the user could then load.
Edit:
The file formats for windows signatures are
.txt
,.htm
and.rtf
. All of these are very well documented formats and should be easy to generate. They should be saved inc:\Users\username\AppData\Roaming\Microsoft\Signatures
. Outlook saves each signature in all three formats, presumably for portability to other apps and individual email settings (for instance if the user usesHTML
or not).