アップグレード評価ツールを使用するのはこれが初めてで、分析の実行時に次のエラーが表示されます。
解析中に問題が発生しました。次のエラー メッセージを確認してください。
オブジェクト参照がオブジェクト インスタンスに設定されていません。
終了しますか?
これが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