Link to home
Start Free TrialLog in
Avatar of Dissaster
Dissaster

asked on

Triggering OnDblClick without triggering OnClick

basically that's it, I want to Trigger the OnDblClick event without triggering the OnClick event first. This on a TCustomControl descendant. does anyone know how to do it?

Thank you.
SOLUTION
Avatar of BigRat
BigRat
Flag of France image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Avatar of Barthax
Barthax
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
You can assign Onclick := nil ?
mokule
Avatar of Dissaster
Dissaster

ASKER

I can not assign onclick := nil, because i want two different actions to be done on click an ondblclick

so basically this is a windows limitation, well, I'll see if i can find a workaround to do this, thanks..