VBGamer |
|||||||||||||||||||||||||||
RE: Class stuff... rolly (1 reply, 0 views) (2000-Oct-25) I think you need to change your property set to property let (like metalwarrior said)
also change these two lines...
Set mvarSrcRect = vData
Set SrcRect = mvarSrcRect
to...
mvarSrcRect = vData
SrcRect = mvarSrcRect
I had the same problem and this works as a fix for me
|