我是新來的!
有人可以回答如何將activeX組合框控制項的文字插入word文件的正文中(例如使用點選事件或變更事件)?
非常感謝!
答案1
例如,您可以使用InsertAfter
在文件末尾插入組合框的選定值。
Private Sub ComboBox1_Click()
ActiveDocument.Content.InsertAfter ComboBox1.Value
End Sub
您也可以使用InsertBefore
.
我是新來的!
有人可以回答如何將activeX組合框控制項的文字插入word文件的正文中(例如使用點選事件或變更事件)?
非常感謝!
例如,您可以使用InsertAfter
在文件末尾插入組合框的選定值。
Private Sub ComboBox1_Click()
ActiveDocument.Content.InsertAfter ComboBox1.Value
End Sub
您也可以使用InsertBefore
.