Re: [python-win32] Using SendMessage to send an accelerator key combination

2005-04-12 Thread Daniel F
> Daniel F wrote: > > >win32api.PostMessage(HWND, win32con.WM_KEYDOWN, win32con.VK_CONTROL, > >lParamBits) > >win32api.PostMessage(HWND, win32con.WM_KEYDOWN, 0x53, lParamBits) > >win32api.PostMessage(HWND, win32con.WM_KEYUP, 0x53, lParamBits) > >win32api.PostMessage(HWND, win32con.WM_KEYUP, win32

Re: [python-win32] Using SendMessage to send an accelerator key combination

2005-04-12 Thread Daniel F
> I've read the thread on this list titled "Help on using > win32api.SendMessage to send keystrokes," some of the PyWin32 documentation, > and some of the MSDN docs on SendMessage, but am still unclear about how to > construct a message to send simple accelerator key combinations to a window, > su