Invoke child control events

BlackStone

Regular
Joined
Jun 14, 2004
Messages
75
Is there a way to invoke events in a child control similar to the way a container control does? I know there is InvokePaint(...), etc., but is there any way to do this other events, such as the Mouse and Key events?
 
You must create your own inherited controls, and create your own InvokeEvent Methods.
All they have to do is:

RaiseEvent Event(arguments)

Alex :p
 
I am aware of reflection. However, the protected On<....> methods do not show up. I was wondering how I could possible access them.
 
Back
Top