Re: Setting Focus

2008-06-13 Thread Mike Driscoll
On Jun 12, 10:04 pm, Gandalf <[EMAIL PROTECTED]> wrote: > You know these  application like ICQ or winamp which stay at the front > of the desktop as long as the user doesn't minimize it. I wont to do > the same with my application in python. > I still didn't manage to make pywinauto to auto set my

Re: Setting Focus

2008-06-13 Thread Hyuga
On Jun 13, 9:34 am, Hyuga <[EMAIL PROTECTED]> wrote: > On Jun 12, 11:04 pm, Gandalf <[EMAIL PROTECTED]> wrote: > > > You know these application like ICQ or winamp which stay at the front > > of the desktop as long as the user doesn't minimize it. I wont to do > > the same with my application in py

Re: Setting Focus

2008-06-13 Thread Hyuga
On Jun 12, 11:04 pm, Gandalf <[EMAIL PROTECTED]> wrote: > You know these application like ICQ or winamp which stay at the front > of the desktop as long as the user doesn't minimize it. I wont to do > the same with my application in python. > I still didn't manage to make pywinauto to auto set my

Setting Focus

2008-06-12 Thread Gandalf
You know these application like ICQ or winamp which stay at the front of the desktop as long as the user doesn't minimize it. I wont to do the same with my application in python. I still didn't manage to make pywinauto to auto set my window frame in focus reliability so I was hoping this will solv

Re: Setting Focus in WxTextCtrl

2004-12-08 Thread Greg Krohn
LutherRevisited wrote: I know in .NET text boxes have a focus method which will do this, but I can't find anything similar in the places I've looked so far. wxPython does, in fact have such a method. It's called SetFocus. It's actually a wx.Window method, so all controls have it. hth greg -- http

Setting Focus in WxTextCtrl

2004-12-08 Thread LutherRevisited
I'm wanting to know how I would go about setting the focus to the next text field after I press enter. I'm guessing it's gonna be EVT_TEXT_ENTER(yada yada) calling some function which will move the focus, but I don't know how to move the focus. I know in .NET text boxes have a focus method which