3

我正在使用 Microsoft Visual Studio 2010 32 位高级版(Microsoft Visual Basic 2010)构建一个表单。当我编译代码时没有任何错误,但是每当我点击退出按钮时,它都会给我这个消息:

Win32Exception 未处理”“创建窗口句柄时出错”。

此错误的原因是什么以及如何解决?

我在大学的实验室里做了这个代码,它工作得很好。但是当我在家里运行它时,我收到了这个错误。

Private Sub btnExit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)    Handles btnExit.Click
    If MsgBox("Are you sure you want to exit the program?", MsgBoxStyle.Exclamation + MsgBoxStyle.YesNo) Then
        End ' error creating window handle 
    End If
End Sub

我使用的是 Windows 8 64 位和 Microsoft Visual Studio 2010 32 位高级版。

4

1 回答 1

1

您不调用End退出程序。是Application.ExitMe.Close

于 2013-08-03T19:13:17.903 回答