I want to use the double click and click events for c1flexgrid in vb.net, but when I double click it only goes to the click event handler and never fires the double click event.
How can I separately handle the click and double click events?
I want to use the double click and click events for c1flexgrid in vb.net, but when I double click it only goes to the click event handler and never fires the double click event.
How can I separately handle the click and double click events?
As stated in MSDN :
Pressing a mouse button when the cursor is over any particular clickable control raises the events in following order:
Two single clicks that occur close enough in time, as determined by the mouse settings of the user's operating system, will generate a MouseDoubleClick event instead of the second MouseClick event.
Therefore,
Check your mouse settings.