1

这是我第一次使用升级评估工具,执行分析时出现以下错误:

分析过程中出现问题。请检查以下错误消息:

你调用的对象是空的。

你想退出吗?

这是我在 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

4

2 回答 2

2

Microsoft 要求声明需要 VB6。这可能只意味着运行时,但是... Visual Basic 6.0 到 Visual Basic .NET 升级评估工具

于 2012-07-17T20:21:43.147 回答
1

除了VB6的要求外,该工具还依赖于msvcp71.dll,这是属于Microsoft C Runtime Library的一个模块。

确保您拥有该模块或从 Internet 的某个位置获取它(我刚刚从 dll-files.com 下载),然后复制到 c:\windows\system32。

您还需要安装 Excel 2003,该工具使用它来生成报告。

于 2015-02-13T15:24:33.777 回答