[EMAIL PROTECTED] wrote:
I just wish there was a way to send ENTER key press to a window (an "Edit" class text widget, to be exact) without having to give the window focus. Any ideas?
Can you post a WM_CHAR message to the window? Win32::GUI::PostMessage($hwnd, WM_CHAR, VK_RETURN, 0); [WM_CHAR = 258 VK_RETURN = 13] I've not tried this myself. Rob.