替换 Outlook 2010 发送按钮?
我正在寻找以下问题的解决方案。有人可以帮我吗?
我需要将 Outlook 发送按钮替换为下拉按钮,例如屏幕截图中的“Von”(发件人)按钮。
仅供参考:新的 Send-DropDown 按钮将具有三个功能: 1. Outlook默认发送功能(普通发送按钮) 2.发送&存档邮件 3.发送&存档邮件+附件
有人可以帮我吗?可以按照我的要求进行更换吗?如果没有 - 有人对我的问题有其他解决方案吗?
多谢!
I'm looking for a solution for the following problem. Can anybody help me out?
I need to replace Outlooks Send-button with a dropdown-button like the "Von" (From) button in my screenshot.
FYI: The new Send-DropDown button will have three functions:
1. Outlooks default send function (the normal sendbutton)
2. Send & Archive Mail
3. Send & Archive Mail+Attachments
Can anyone help me out? Is it possible to do a replacment like i want? if not - does anyone have an other solution for my problem?
Thanks a lot!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要隐藏发送按钮(请参见此处:http://help.lockergnome.com/office/hide-disable-button-Outlook-2007--ftopict1010132.html),然后添加您自己的按钮到表单。插件 SDK 应该具有您需要的所有功能。
You'll need to hide the send button (see here: http://help.lockergnome.com/office/hide-disable-button-Outlook-2007--ftopict1010132.html) and then add your own button to the form. The add-in SDK should have all the functionality you need.
可能ID是2617。3037
是文件菜单中的发送命令。
我自己需要这个,所以我会尝试一下并进行相应的编辑。
非常欢迎任何可以帮助发布代码以使用这些 ID 的人。
(编辑)
spector.CommandBars().FindControl(, 2617).Visible = False
它应该可以工作,但不能。
如果有人能帮忙的话...
It could be that the ID is 2617.
3037 is the send command in the file menu.
I need this myself so I'll try it out and edit accordingly.
Anyone who can help posting the code to use these ID's is very welcome.
(edit)
inspector.CommandBars().FindControl(, 2617).Visible = False
It should work but it doesn't.
If anyone could help out...