G Guest Dec 15, 2005 #1 hi, i was wondering how my form could catch key press events when its like minimized to the system tray? thanks
hi, i was wondering how my form could catch key press events when its like minimized to the system tray? thanks
H Herfried K. Wagner [MVP] Dec 15, 2005 #2 iwdu15 said: hi, i was wondering how my form could catch key press events when its like minimized to the system tray? Click to expand... You'll need a keyboard hook to capture these keystrokes system-wide: Article on keyboard hooks: <URL:http://www.developer.com/net/net/article.php/11087_2193301_1/> Documentation on hooks: <URL:http://msdn.microsoft.com/library/en-us/dnwui/html/msdn_hooks32.asp> <URL:http://msdn.microsoft.com/library/en-us/winui/winui/windowsuserinterface/windowing/hooks.asp>
iwdu15 said: hi, i was wondering how my form could catch key press events when its like minimized to the system tray? Click to expand... You'll need a keyboard hook to capture these keystrokes system-wide: Article on keyboard hooks: <URL:http://www.developer.com/net/net/article.php/11087_2193301_1/> Documentation on hooks: <URL:http://msdn.microsoft.com/library/en-us/dnwui/html/msdn_hooks32.asp> <URL:http://msdn.microsoft.com/library/en-us/winui/winui/windowsuserinterface/windowing/hooks.asp>