how to send WM_ to other Apps
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
i wanna write a program which can send messages as WM_LBUTTON_DOWN to other apps, for example, i want to work out the operation ->open "notepad"->input "ABC" in that blank edit area, what can i do in my own program? thanks a lot Josephvan thanks for your attention
-
i wanna write a program which can send messages as WM_LBUTTON_DOWN to other apps, for example, i want to work out the operation ->open "notepad"->input "ABC" in that blank edit area, what can i do in my own program? thanks a lot Josephvan thanks for your attention
u can use SendInput() function. But to send characters to a specific edit window its probably best to use WM_CHAR with PostMessage().