MarbleEater, im back :-\
Ive realized I dont want a generic click, but instead, a generic "mouse down" event.
Ive tried :
Private Sub AddGenericClickHandler(ByVal Parent As Control, ByVal Handler As EventHandler)
For Each thing As Control In Parent.Controls
AddHandler thing.MouseDown, Handler
Next
AddHandler Parent.MouseDown, Handler
but needless to say, it doesnt like that. Ive also tried replacing the "Handler As EventHandler" in the arguements list, to "...AS MouseEventHandler" but it gives me a "does not have the same signature" error.
Any insight? Thanks