Find option ia SDI frame
-
I've to create the "find string option in a particular file" with key board enable "Ctrl+F".how can i do that?
kamalesh
-
I've to create the "find string option in a particular file" with key board enable "Ctrl+F".how can i do that?
kamalesh
kamalesh82 wrote:
I've to create the "find string option in a particular file" with key board enable "Ctrl+F"
Try using RegisterHotKey. Handle those messages in WM_HOTKEY... The statement registers CTRL+F1 as the hotkey.. RegisterHotKey(hWnd,1,MOD_CONTROL,VK_F1 );
Somethings seem HARD to do, until we know how to do them. ;-)_AnShUmAn_
-
kamalesh82 wrote:
I've to create the "find string option in a particular file" with key board enable "Ctrl+F"
Try using RegisterHotKey. Handle those messages in WM_HOTKEY... The statement registers CTRL+F1 as the hotkey.. RegisterHotKey(hWnd,1,MOD_CONTROL,VK_F1 );
Somethings seem HARD to do, until we know how to do them. ;-)_AnShUmAn_