有没有办法在 VBA 中将图像添加到 MessageBox?
我想知道是否可以主要使用 VBA 将图像添加到消息框,但如果不能使用其他语言。
MsgReply = MsgBox("InspectionCreator - Continue?", vbMsgBoxSetForeground + vbSystemModal + vbYesNo)
If vbYes = MsgReply Then
Listener.Connect2SW
Else: End
End If
I am wondering if it is possible to add an image to a messagebox in VBA mainly, but if not any other languages.
MsgReply = MsgBox("InspectionCreator - Continue?", vbMsgBoxSetForeground + vbSystemModal + vbYesNo)
If vbYes = MsgReply Then
Listener.Connect2SW
Else: End
End If
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,您不能在 MessageBox 中显示图像。除非你指的是警告、错误等符号?
尽管您可以通过创建一个具有 MessageBox 外观的 UserForm 来模拟它,背景中有一个图像,然后只需
Show()
表单而不是调用 MsgBox功能。No, you can't display an image in a MessageBox. Unless you mean the symbols such as Warning, Error, etc?
Although you could simulate it by creating a UserForm which has the appearance of a MessageBox, with an image in the background and then just
Show()
the form instead of calling the MsgBox function.