编写一个 Microsoft Word 工具栏
我想编写一个 Microsoft 工具栏,从 Microsoft Office Word 获取单词并将其传递给个人编写的其他应用程序(文本到语音)。我在网上搜索过,但没有太多好主意。首先有可能吗? (听起来是的!)有没有人遇到过同样的问题?我会很感激任何想法。
I want to write a Microsoft toolbar that gets a word from Microsoft Office Word and pass it to other application (Text To Speech) that is written personally. I've searched the web but not so many good ideas. First is it possible? (Sounds yes!) And is there anyone who has faced somehow the same problem? I'll appreciate any ideas.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Visual Studio 创建带有功能区 XML 文件的 Word 2007(或 2010)插件。
MSDN 有一个 walthough。
对于 2003 或更早版本,您需要创建一个使用
CommandBars
对象来添加工具栏的插件。You can use Visual Studio to create a Word 2007 (or 2010) addin with a Ribbon XML file.
MSDN has a walthough.
For 2003 or earlier, you'll need to create an addin that uses the
CommandBars
object to add a toolbar.