J
John Howard
Within Excel 2003 this macro:
Private Sub Workbook_Open()
Dim wkBook As Workbook
Dim refCurr As Object
Dim i As Integer
Set wkBook = ThisWorkbook
'Deselects 'Missing'(IsBroken) references from the VBProject References
dropdown list.
For i = wkBook.VBProject.References.Count To 1 Step -1
Set refCurr = wkBook.VBProject.References(i)
If refCurr.IsBroken Then
wkBook.VBProject.References.Remove refCurr
End If
Next
End Sub
fails to remove the VBProject Reference
MISSING: Microsoft Powerpoint 12.0 Object Library.
and returns Runtime Error 48, Error in loading DLL.
What code will programatically remove the missing reference?
The workbook was originally developed in Excel 2007 xlsm format and will
continue to be distributed far and wide with instruction to Save As an xls
file if pre 2007 versions are to be used.
I am understanably averse to having users unprotect the VB Editor to allow
manual reference removal.
And so wil be most grateful for any forthcoming solution.
Thanks in anticipation
Private Sub Workbook_Open()
Dim wkBook As Workbook
Dim refCurr As Object
Dim i As Integer
Set wkBook = ThisWorkbook
'Deselects 'Missing'(IsBroken) references from the VBProject References
dropdown list.
For i = wkBook.VBProject.References.Count To 1 Step -1
Set refCurr = wkBook.VBProject.References(i)
If refCurr.IsBroken Then
wkBook.VBProject.References.Remove refCurr
End If
Next
End Sub
fails to remove the VBProject Reference
MISSING: Microsoft Powerpoint 12.0 Object Library.
and returns Runtime Error 48, Error in loading DLL.
What code will programatically remove the missing reference?
The workbook was originally developed in Excel 2007 xlsm format and will
continue to be distributed far and wide with instruction to Save As an xls
file if pre 2007 versions are to be used.
I am understanably averse to having users unprotect the VB Editor to allow
manual reference removal.
And so wil be most grateful for any forthcoming solution.
Thanks in anticipation