1234567891011121314
#include <iostream> #include <Windows.h> #include <string> using namespace std; int main() { ::HWND notepad = ::FindWindowW(NULL, L"Untitled - Notepad"); ::SendMessage(notepad,WM_SETTEXT,0,(LPARAM)"Message Recieved"); return 0; }
(LPARAM)L"Message Recieved"
123456789101112
#include <Windows.h> int main() { HWND notepad=FindWindow(NULL, "Untitled - Notepad"); if(notepad) SendMessage(notepad,WM_SETTEXT,0,(LPARAM)"Message Recieved"); else MessageBox(0,"notepad ain't krap!","Report",MB_OK); return 0; }