VanDykeのCRTで使用するVBScriptスクリプトを作成しています。デフォルトの「はい」の代わりに、MsgBoxの「いいえ」ボタンにフォーカスを自動的に設定する方法はありますか?
val = MsgBox("Do you want to remove specials?",VBYesNo, "Purchasing Automation")
'6 == yes, 7 == no
If (val = 6) Then
'we received a yes
MsgBox("got a yes")
Else
'no is inferred
MsgBox("got a no")
End If