JLRodgers Level: Moderator
 Registered: 04-04-2002 Posts: 1617
|
Re: Method or data member not found Archived to Disk
Not that it'll fix the problem, but try the following:
Make sure you have the following in the code (similar based on your case):
' If no events in the class
Dim ClassVariable as New Classname
' Else
Dim ClassVariable as Classname
Set ClassVariable = New Classname
' When no longer need the class
Set ClassVariable = Nothing
And if that doesn't work make sure all references to the project are loaded and exist (don't have a "Missing" next to them).
I've seen that cause a similar problem with simple built in functions like "Abs", "Rnd", or "Control.anything"
|