Re: Tix: Windows XP: Problem - how to stop root window from popping up with Tix

2008-10-01 Thread Scott David Daniels
Lie Ryan wrote: On Wed, 01 Oct 2008 11:33:59 +0100, dudeja.rajat wrote: Please suggest how can I suppress the root window The root window is the main window, not the DOS box. I think in windows, you should use pythonw.exe or something to open the python script so not to open a dos box. A

Re: Tix: Windows XP: Problem - how to stop root window from popping up with Tix

2008-10-01 Thread dudeja . rajat
On Wed, Oct 1, 2008 at 11:44 AM, Lie Ryan <[EMAIL PROTECTED]> wrote: > On Wed, 01 Oct 2008 11:33:59 +0100, dudeja.rajat wrote: > > > Hi, > > > > Im using Tix on widows XP and I've tried many ways to suppress the root > > window. But so far I'm unable to do it. > > > > > > Please suggest how can I

Re: Tix: Windows XP: Problem - how to stop root window from popping up with Tix

2008-10-01 Thread Lie Ryan
On Wed, 01 Oct 2008 11:33:59 +0100, dudeja.rajat wrote: > Hi, > > Im using Tix on widows XP and I've tried many ways to suppress the root > window. But so far I'm unable to do it. > > > Please suggest how can I suppress the root window. > > My code is as follows: > > import Tix > myRoot = Tix

Tix: Windows XP: Problem - how to stop root window from popping up with Tix

2008-10-01 Thread dudeja . rajat
Hi, Im using Tix on widows XP and I've tried many ways to suppress the root window. But so far I'm unable to do it. Please suggest how can I suppress the root window. My code is as follows: import Tix myRoot = Tix.Tk() myRoot.withdraw() myRoot.deiconify() myRoot.title("Test Automation") #C