Hello. How can i use SendMessage to "press" other program's button? I don't know other program's button's ID but there is only one button in that program. I searched MSDN and found something. I tried this piece of code:
HWND hWnd;
hWnd = HWND(FindWindow(NULL, "WindowName"));
SendMessageW(hWnd, BM_CLICK, NULL, NULL);
At MSDN says that wParm and lParm has to be NULL. Can you help me?
Thank you.