MS Word 插件、宏或 VBA 脚本,用于将单词文本传递到远程服务器并显示响应
我想创建一个用户可以在 MS Word 工具栏上按下的按钮,之后将文档文本传递到远程服务,并将一些表格数据传回并显示给用户。
创建这个最简单、最快的是哪一个?宏可以做到这一点吗?或者要在工具栏中显示按钮我必须有一个插件?
I would like to create a button that the user can press on the MS word toolbar, after this the document text is passed to a remote service, and some tabular data is passed back and displayed to the user.
Which would be the easiest an quickest for creating this? Can a macro do this? Or to display a button in the toolbar I must have an addin?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当然,宏可以做到这一点。将宏按钮添加到工具栏:
http://web.ticino.com/multilingual/creating_a_macro_button。 htm
将数据传递到远程服务 - 好吧,您没有提到您想要的协议类型,下面是如何使用 VBA 发布 http 请求的示例:
如何我使用 VBA 从 Excel 向服务器发送 HTTP POST 请求?
Sure a macro can do this. Adding a macro button to your toolbar:
http://web.ticino.com/multilingual/creating_a_macro_button.htm
Passing data to a remote service - well, you did not mention the kind of protocol you have in mind, here is an example of how to post a http request by using VBA:
How can I send an HTTP POST request to a server from Excel using VBA?