in reply to Send Key strokes to Win32 app

You can send keystrokes using preinstalled Win32::API module. Import from user32.dll and use
UINT SendInput(UINT nInputs, LPINPUT pInputs, int cbSize) Windows API function

Replies are listed 'Best First'.
Re^2: Send Key strokes to Win32 app
by TAHAIC (Novice) on Dec 12, 2008 at 08:37 UTC
    Thank you all for sharing your wisdom.