我正在使用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位高级版。
答案 0 :(得分:1)
您不要致电End
退出程序。它是Application.Exit
或Me.Close
!