“你调用的对象是空的?”

这个问题在这里已经有了答案:

  • 什么是NullReferenceException,以及如何解决它? 33个答案

  • 您需要创建要显示的表单的新实例。 你可以通过创建一个T形式的变量然后显示它来做到这一点。

    如果您不创建窗体的实例, MainForm.Show()代码将在空引用上调用Show()

    If PasswordTextBox.Text = pass Then
        Me.Hide()
        Dim theFormIWantToShow As New MainForm
        theFormIWantToShow.Show()
    End If
    
    链接地址: http://www.djcxy.com/p/28043.html

    上一篇: "Object reference not set to an instance of an object?"

    下一篇: C# NullReferenceException was unhandled by user code