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.
我有这个 VB .NET 代码。它用于登录:
If myData.HasRows = 0 Then MsgBox("Invalid License/Password!") Else MainForm.Show() Me.Hide() End If
问题是隐藏。因为当我使用 MainForm 退出窗口按钮关闭程序时,不要关闭。
如果我把它Me.Close()关闭所有程序。
Me.Close()
转到项目属性并在应用程序选项卡下将关闭模式设置为最后一个表单关闭时,您可以Me.Close()毫无问题地使用
您可以选择关闭时触发Me.Close()的FormClosing事件MainForm。这样,当MainForm关闭时它也会触发Me.Close()。
FormClosing
MainForm