hi all,
i am using a withevents with in a activeX control module.
private withevents objparent as form..
but its givin probs..THIS COMPONENT DOESNT SUPPORT THIS SET OF EVENTS(ERROR 459)..
Printable View
hi all,
i am using a withevents with in a activeX control module.
private withevents objparent as form..
but its givin probs..THIS COMPONENT DOESNT SUPPORT THIS SET OF EVENTS(ERROR 459)..
AFAIK you can only declare WithEvents if you declared an event in the declarations-sections
eg. Event Dummy(pParam As Long)
hi crazy,
Private WithEvents ObjParent as Form
here objparent is a variable of a built in form object. we r getting all the events associated with the form with the objparent variable.
but still its not working..............