Hello friend, use:
PostMessage(handle, WM_CHAR, 'a', 0); // this send a to handle window
PostMessage(handle, WM_CHAR, 'a', 0); // this send a to handle window
To copy to clipboard, switch view to plain text mode
Complete with HWND handle:
#include "windows.h"
HWND handle = FindWindow(NULL, L"Tibia");
PostMessage(handle, WM_CHAR, 'u', 0);
#include "windows.h"
HWND handle = FindWindow(NULL, L"Tibia");
PostMessage(handle, WM_CHAR, 'u', 0);
To copy to clipboard, switch view to plain text mode
Change Tibia for your window name.
Bookmarks