【发布时间】:2014-05-22 18:34:09
【问题描述】:
这个运行时错误 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 很常见而且看起来很愚蠢,但我就是不知道它有什么问题。
【问题讨论】:
标签: vba runtime-error autodesk