MsgBox 出现在 VB.NET 的启动屏幕下方
我有一个使用应用程序框架设置的启动屏幕。在我的主窗体中,我检查 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试此链接: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..)
在启动窗体的
Shown
事件中显示 MsgBox。Show the MsgBox in the splash form's
Shown
event.您只需在消息框样式设置中添加一行即可。
如果您已经在使用其他样式设置(例如 MsgboxStyle.YesNo),则只需在两个设置之间添加“或”即可。
这对我来说效果很好
You can simply add a line in Message box style setting.
And if your are already using some other style setting such as MsgboxStyle.YesNo then simply add 'Or' in between two settings like.
This one worked fine for me