in reply to Control+Mouse clicks to select items
Have you tried using SendRawKey()? Something like this might work:
SendRawKey( VK_CONTROL, 0 ); ## Control key down SendMouse( ... ); SendMouse( ... ): SendRawKey( VK_CONTROL, KEYEVENTF_KEYUP ); ## Control key up
|
|---|