U
Ulrich1947
Hi to all !
Is there any way of removing a missing reference by vba ?
I use routine on starting access, to find out whether a reference is broken
or not which reads
For allgKZnum1 = 1 To Zähler
If References(allgKZnum1).IsBroken = True Then
xxx
Else
End If
Next allgKZnum1
Not knowing, which reference might be broken I want to remove that broken
reference. From a separate table I can refer from the broken reference (by
its GUID) to the references name. I have tried to put this name in a variable
actRef and then use
References.Remove References(actRef)
But this does not work at all. Or can't I remove missing References not at
all by vba?
Any idea?
Thanks
Ulrich
Is there any way of removing a missing reference by vba ?
I use routine on starting access, to find out whether a reference is broken
or not which reads
For allgKZnum1 = 1 To Zähler
If References(allgKZnum1).IsBroken = True Then
xxx
Else
End If
Next allgKZnum1
Not knowing, which reference might be broken I want to remove that broken
reference. From a separate table I can refer from the broken reference (by
its GUID) to the references name. I have tried to put this name in a variable
actRef and then use
References.Remove References(actRef)
But this does not work at all. Or can't I remove missing References not at
all by vba?
Any idea?
Thanks
Ulrich