Hallo,
how can i invoke a UserCommand with doubble click of left mouse button?
This code in constructor of own subclass doesn't work, while this works for keyboard shortcurts:
with Keystrokes.Add do begin
Command := ecGoTo;
Key := VK_LBUTTON;
Shift := [ssDouble, ssLeft];
ShiftMask := [];
end;
Regards