Send F5 or left arrow message
-
Hi What is correct procedure for sending F5 key or left arrow key? SendMesage(hwnd,WM_CHAR,?,?) or SendMesage(hwnd,WM_KEYDOWN,?,?) Tomaz Rotovnik
-
Hi What is correct procedure for sending F5 key or left arrow key? SendMesage(hwnd,WM_CHAR,?,?) or SendMesage(hwnd,WM_KEYDOWN,?,?) Tomaz Rotovnik
Tomaz Rotovnik wrote: What is correct procedure for sending F5 key or left arrow key? None of these actually. Use
keybd_event
WIN32 API function instead. And if you are using Windows 98 or later, useSendInput
for this purpose. Gurmeet S. Kochar
If you believe in God, it's because of the Devil
-
Tomaz Rotovnik wrote: What is correct procedure for sending F5 key or left arrow key? None of these actually. Use
keybd_event
WIN32 API function instead. And if you are using Windows 98 or later, useSendInput
for this purpose. Gurmeet S. Kochar
If you believe in God, it's because of the Devil
Thank you Tomaz Rotovnik