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.
ThisDocument セクションでマクロが定義された Word テンプレートがあります。
Sub Go(pID As Integer, pPassword As String)
次のように、JScript からこのマクロを実行しようとしています。
application.Run("Go", 1, "secret");
しかし、これは失敗します-何が間違っていますか?
わかりました、1つの答えが見つかりました:
代わりにドキュメント変数を使用してください:
document.Variables.Add("id", 1); document.Variables.Add("password", "secret"); application.Run("Go");