VBScript 将焦点设置为“否” UI 窗口上的按钮
我正在编写一个与 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
I'm writing a VBScript script for use with VanDyke's CRT. Is there a way to set the focus on the "No" button on a MsgBox automatically, instead of the default "Yes"?
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将
vbYesNo
替换为vbYesNo OR vbDefaultButton2
。Replace
vbYesNo
withvbYesNo OR vbDefaultButton2
.