这个运行时错误 91 对我来说没有意义。一般来说,问题是我没有定义一些东西,但这次我已经注意到了一切。
错误在这一行:
Set f = ThisApplication.ActiveDocument.File
ThisApplication 是在开始时定义的。文件在该行之前定义。
这是我的代码:
Option Explicit
Public Sub ReplaceReference()
Dim invApp As Inventor.Application
Set invApp = ThisApplication
Dim NameStr As String
Dim NewNamePath As String
Dim NameStr2 As String
Dim OldNamePath As String
NameStr = Renamer.New_Name.Text 'Concatenates the full new file path
NewNamePath = Renamer.Path_Text.Text & "\" + NameStr & "-" & Right("00" & i, 3) & ".ipt"
If Err.Number <> 0 Then MsgBox "Error Found After NewNamePath:" & Err.Description
Err.Clear
NameStr2 = Renamer.Old_Name_Display.Text 'Concatenates the old file NAME
OldNamePath = NameStr2 & "-" & Right("00" & i, 3) & ".ipt"
If Err.Number <> 0 Then MsgBox "Error Found After OldNamePath:" & Err.Description
Err.Clear
Do While i < 99
Dim f As File
Set f = ThisApplication.ActiveDocument.File
Dim fd As FileDescriptor
For Each fd In f.ReferencedFileDescriptors
If fd.FullFileName = OldNamePath Then
fd.ReplaceReference (NewNamePath)
End If
Next
Loop
End Sub
我知道运行时错误 91 很常见而且看起来很愚蠢,但我只是不知道它有什么问题。