RE: [python-win32] findwindow by its class name

2005-10-21 Thread James Hu
nt: Friday, October 21, 2005 2:28 PM To: Steve Holden Cc: python-list@python.org; python-win32@python.org Subject: Re: [python-win32] findwindow by its class name On 10/21/05, Steve Holden <[EMAIL PROTECTED]> wrote: > > Is there any way to know this windows' class name? I need to

Re: [python-win32] findwindow by its class name

2005-10-21 Thread Paul Moore
On 10/21/05, Steve Holden <[EMAIL PROTECTED]> wrote: > > Is there any way to know this windows' class name? I need to find it by [...] > I'm not saying it can'ty be done (which is a pity for you, because > that's usually a cue for someone to contradict me) but it's expecting > quite a lot of win32g

Re: findwindow by its class name

2005-10-21 Thread Steve Holden
James Hu wrote: > Hi, > > For the simple code: > > from wxPython.wx import * > > class MyApp(wxApp): > def OnInit(self): > frame = wxFrame(NULL, -1, "Hello App") > frame.Show(true) > self.SetTopWindow(frame) > return true > > app = MyApp(0) > app.MainLoop()

findwindow by its class name

2005-10-21 Thread James Hu
Hi, For the simple code: from wxPython.wx import * class MyApp(wxApp): def OnInit(self): frame = wxFrame(NULL, -1, "Hello App") frame.Show(true) self.SetTopWindow(frame) return true app = MyApp(0) app.MainLoop() Is there any way to know this windows' class