在 Word 2007 上使用 VBA 复制节
我有一个文档模板,其中有一段文本包含标题和列表。当我编辑此部分时,我希望 Word 在下面创建一个新部分。因此编辑该部分就像“添加按钮”一样。这可行吗? 目前,我正在尝试使用构建块,并且我设法插入这个新部分,但我不知道在编辑当前现有部分时如何执行此操作以及如何在当前部分之后插入它。
I have a document template that has a section of text that contains a Header and a List. When I edit this section I want Word to create a new one underneath. So editing the section works like a "Add button". Is this feasible?
Currently I'm trying to use Building Blocks and with those I manage to insert this new section but I don't know how to do it when editing a currently existing section and how to insert it after the current section.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
快速搜索后,似乎无法监视事件,例如
keypress
(或等效项)、onclick
或任何可能发生的事件当用户向部分添加文本时触发。因此,据我所知,当用户添加文本时,您无法自动触发新部分。
您可以做的是在菜单/功能区中添加按钮(取决于您使用的版本)来添加新部分。
After a quick search, it seems like there is no way to monitor events like
keypress
(or equivalent),onclick
or any event that could be triggered when a user is adding text to a section.Thus, as far as i can see, you can't automatically trigger a new section when a user is adding text.
What you can do is adding a button in a menu/in the ribbon (depending on the version you are using) to add a new section.
Sub ButtonAction1()
'你的代码
结束子
我希望这对你有帮助
它在Word菜单上创建一个按钮
Sub ButtonAction1()
'your code
end sub
I hope this helps you
It creates a button on word menu