gpt4 book ai didi

excel - 如何将 vbYes/vbNo 转换为 bool 值?

转载 作者:行者123 更新时间:2023-12-04 22:31:52 26 4
gpt4 key购买 nike

此代码显示一个 MsgBox 并提出一个问题。结果在 VbMsgBoxResult 中返回并转换为 bool 值。

Dim gobox as VbMsgBoxResult
dim go as boolean

gobox = MsgBox("Question?", vbYesNo, "Descriptive Titel")
If gobox = vbYes Then
go = True
Else
go = False
End If

有没有更简单的方法将 VbMsgBoxResult 转换为 bool 值?

最佳答案

也许只是

go = (MsgBox("Question?", vbYesNo, "Descriptive Titel") = vbYes)

关于excel - 如何将 vbYes/vbNo 转换为 bool 值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52093217/

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