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 文書が開かれるとすぐに、「abcd」と入力してから ALT+J を入力することをシミュレートしたいと考えています。
これどうやってするの?
ThisDocumentモジュール内部。
ThisDocument
Private Sub Document_Open() Selection.TypeText ("abcd") SendKeys "%{K}" End Sub
参照:SendKeys()
SendKeys()