Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我注意到在 VBA 中 MsgBox 函数有一个允许的常数
vbDefaultButton4
这将使第四个按钮成为默认按钮。但是在所有允许的按钮常量中,没有一个给你四个按钮。
有没有办法在 MsgBox 上获得第四个按钮,或者这是没用的,还是别的什么?
如果我记得,您可以使用vbMsgBoxHelpButton在您的消息框中添加一个帮助按钮。这与一个 3 按钮对话框相结合,将产生 4 个按钮。然后,您可以使用vbDefaultButton4“帮助”作为默认按钮。
vbMsgBoxHelpButton
如果vbMsgBoxHelpButton与提供三个按钮的选项结合使用,则有四个按钮。