| 内容 | サイズ(Bytes) |
|---|---|
| VBSスクリプトファイル | 2,183 |
|
|
|
Option Explicit Dim Doc,App Const RegistryKeyCode = "zwRapid7Pro" Const DeleteItMessage = "消去する要素を選択してください" Const EndOfCommand = "コマンドを終了しますか?" Set Doc = CreateObject(RegistryKeyCode) Set App = Doc.Application Set Doc = App.GetDoc Do App.SetMessage DeleteItMessage Doc.GetTouchPrimitive Doc.RemoveS App.SetMessage "" If MsgBox(EndOfCommand,vbYesNo) = vbYes Then Exit Do End If Loop Set Doc = Nothing Set App = Nothing |