to "mark" multiple Item in Windows Explorer you need "Control + left Mouse Button down"
how to get that Event
---
i need it for my CLASS TGrid where i get "Keyboard" Input in Method Notify
- Code: Select all Expand view
- CASE nCode == LVN_KEYDOWN
nKey := LV_GETGRIDVKEY( nPtrNMHDR )
IF nKey = 13
IF ::bClick != nil
EVAL( ::bClick, ::nOption, Self )
ENDIF
is this the Place to "ask" for CTRL + LBUTTONDOWN
- Code: Select all Expand view
- // CTRL + Left Mouse down
ELSEIF ( GetKeyState( VK_CONTROL ) .AND. ??? )