I have code that launches an external application and automatically fills in a password prompt.
I want to automate the pressing of the \"ENTER\" key, so that the use
Try this
PostMessage(AppHandle, WM_KEYDOWN, VK_RETURN, 0);
Bye.