有没有办法在 VBA 中将图像添加到 MessageBox?

发布于 2024-12-06 17:13:17 字数 234 浏览 0 评论 0原文

我想知道是否可以主要使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

漫雪独思 2024-12-13 17:13:17

不,您不能在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文