这是我第一次使用升级评估工具,执行分析时出现以下错误:
分析过程中出现问题。请检查以下错误消息:
你调用的对象是空的。
你想退出吗?
这是我在 VB 6.0 中开发的代码
Private Sub Command1_Click()
Dim line As String
Dim name As String
name = Text1.Text
If Text1.Text = Null Or Text1.Text = "" Then
MsgBox ("Please enter your name")
Else
MsgBox ("Welcome, " + Text1.Text)
If Option1.Value = True Then
line = "Admin"
MsgBox (name + ", you have selected the following items " + line)
ElseIf Option2.Value = True Then
line = "User"
MsgBox (name + ", you have selected the following items " + line)
Else
MsgBox ("You have not selected any options! Please select one of the options given in the right panel")
End If
'
End If
End Sub
我还尝试了一个简单的 hello world 应用程序,但它仍然给我同样的错误。注意:我的计算机上没有 Visual Studio。我正在使用 Windows XP。VB 6.0。.Net 框架 1.1