MsgBox 出现在 VB.NET 的启动屏幕下方

发布于 2024-08-03 03:34:30 字数 132 浏览 7 评论 0原文

我有一个使用应用程序框架设置的启动屏幕。在我的主窗体中,我检查 MainForm 的 Load() 事件中的某些条件,并在其中某些条件失败时显示 MsgBox。

但问题是,MsgBox 位于启动屏幕下方。有什么办法可以纠正这个问题吗?

I have a splash screen set using the Application Framework. In my main form, I check for some conditions in Load() event of the MainForm and display a MsgBox if some of them fails.

But the problem is, the MsgBox comes below the Splash Screen. Is there any way to correct this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

梦明 2024-08-10 03:34:30

尝试此链接:http://www.codeproject.com/KB/install/TopMostMessageBox。 aspx

它是用 C# 编写的,但可以使用转换工具轻松转换(我会发布一个链接,但由于我是新用户,所以只允许我发布 1 个链接..)

Try this link: http://www.codeproject.com/KB/install/TopMostMessageBox.aspx

It's in C# but it could be converted easily using a conversion tool (I'd post a link to that but since I'm a new user it's only letting me post 1 link..)

梦冥 2024-08-10 03:34:30

在启动窗体的 Shown 事件中显示 MsgBox。

Show the MsgBox in the splash form's Shown event.

心碎无痕… 2024-08-10 03:34:30

您只需在消息框样式设置中添加一行即可。

msgbox("Hello", MsgBoxStyle.MsgBoxSetForeground)

如果您已经在使用其他样式设置(例如 MsgboxStyle.YesNo),则只需在两个设置之间添加“或”即可。

msgbox("Hello", MsgBoxStyle.YesNo Or MsgBoxStyle.MsgBoxSetForeground)

这对我来说效果很好

You can simply add a line in Message box style setting.

msgbox("Hello", MsgBoxStyle.MsgBoxSetForeground)

And if your are already using some other style setting such as MsgboxStyle.YesNo then simply add 'Or' in between two settings like.

msgbox("Hello", MsgBoxStyle.YesNo Or MsgBoxStyle.MsgBoxSetForeground)

This one worked fine for me

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