标签: vba ms-word
我的Word文档打开后,我想模拟输入“abcd”,然后输入ALT + J.
我该怎么做?
答案 0 :(得分:1)
在 ThisDocument 模块中。
ThisDocument
Private Sub Document_Open() Selection.TypeText ("abcd") SendKeys "%{K}" End Sub
参考:SendKeys()
SendKeys()