Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带有几个字段和一个命令按钮的 Word 表单。当用户单击该按钮时,我喜欢它后面的 VBA 代码将某个文本(例如“abc”)转储到光标所在的任何字段中。我所有的搜索都表明我必须使用字段的名称,但我不知道如何检测光标所在的表单字段。
我的问题是我正在寻找一种 FormFields 的属性。我找不到。但是,以下单个语句会将您想要的文本放置在光标当前所在的任何表单字段中:
Selection.Range = "abc"