Hi there,
does anyone know in vb, how to detect a doubleclick event on an OCX with no doubleclick event?
Thanks
Smithy
Printable View
Hi there,
does anyone know in vb, how to detect a doubleclick event on an OCX with no doubleclick event?
Thanks
Smithy
if you wrote the ocx you can subclass it and catch the windows message WM_LBUTTONDBLCLK, and do something with that.....
If you didn't write the ocx it becomes very complex, you'll need a C++ DLL or the Message blaster OCX to attach it to the ocx handle, and then capture the same message....
sorry to be vague, but thats the only way I can think of....
Hi,
Nope, it's not my control. can you tell me more about Message blaster OCX?
thanks
Smithy.
http://www.programmersheaven.com/zone15/cat233/2329.htm
have a look at this....