Title: Re: [python-win32] create user message for wxPython
Thanks, VC++ tool Spy++ can
do this as well.
From: [EMAIL PROTECTED] on behalf
of R. Alan MonroeSent: Sat 10/22/2005 8:51 AMTo:
python-win32@python.orgSubject: Re: [python-win32] create user
message for wxPython
> Hi,
> Hi, Tim,
> Your idea probably works as well, but I found another way to catch user
> defined message. Thanks a lot!
> For the handler of the second app, win32gui.FindWindow can do this job,
> then win32gui.PostMessage. But for FindWindow, I can only find the
> specific window by its title, not
registered class, which I
posted another message.
Any idea?
James
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Tim Roberts
Sent: Friday, October 21, 2005 12:57 PM
To: python-win32@python.org
Subject: [python-win32] create user message for wxPython
On Thu
On Thu, 20 Oct 2005 16:26:35 -0400, "James Hu" <[EMAIL PROTECTED]>
>There are 2 wxPython application, A and B and need to exchange msg.
>Sending WM_CLOSE, wxEVT_MOUSEWHEEL to B is OK, and sending user message
>like 1225 from A to B is also OK.
>
>But B didn't catch this message, note, B is runnin
Hi,
There are 2 wxPython application, A and B and need to exchange msg.
Sending WM_CLOSE, wxEVT_MOUSEWHEEL to B is OK, and sending user message
like 1225 from A to B is also OK.
But B didn't catch this message, note, B is running before A sends msg
and can receive "WM_CLOSE".
Do I have to make