gpt4 book ai didi

vb6 - 我如何知道从 MsgBox 获得的输入?

转载 作者:行者123 更新时间:2023-12-04 19:08:37 24 4
gpt4 key购买 nike

在 VB6 中,我试图找出如何在 MsgBox 中获取用户的输入

这是我的代码:

Dim myAnswer As Integer

myAnswer = MsgBox("Do you want to buy this upgrade?", vbOKCancel, "Upgrade Description")

MsgBox 带有一个确定和取消按钮,但我不知道如何判断他们是否单击了确定或取消。

最佳答案

这里:

Dim myAnswer As Integer
myAnswer = MsgBox("Do you want to buy this upgrade?", vbOKCancel, "Upgrade Description")

If myAnswer = vbOK Then
MsgBox "You clicked 'OK'."
ElseIf myAnswer = vbCancel Then
MsgBox "You clicked 'Cancel'."
' ...
End If

MsgBox 函数返回的结果有 7 个常量:

Constant    Value   Description
vbOK 1 OK
vbCancel 2 Cancel
vbAbort 3 Abort
vbRetry 4 Retry
vbIgnore 5 Ignore
vbYes 6 Yes
vbNo 7 No

引用资料:

关于vb6 - 我如何知道从 MsgBox 获得的输入?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50478148/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com