Re: [Tutor] Creating simple windows in XP

2009-01-16 Thread W W
On Thu, Jan 15, 2009 at 5:45 PM, Alan Gauld wrote: > You mean like doing > > import tkMessageBox > tkMessageBox.showinfo("Window Text", "A short message") > > in Tkinter? :-) > > OR > > res = tkMessageBox.askokcancel("Which?", "Ready to stop?") > print res > > At that level Tkinter is pretty easy

Re: [Tutor] Creating simple windows in XP

2009-01-15 Thread Alan Gauld
"Alex Krycek" wrote EasyGui is pretty simple, but I relying on standard tools. I liked how in VB, for example, to open a dialog box you could write: MsgBox("Text", vbOKOnly, "Title"). You mean like doing import tkMessageBox tkMessageBox.showinfo("Window Text", "A short message") in Tkin

Re: [Tutor] Creating simple windows in XP

2009-01-15 Thread Alex Krycek
Thanks for the suggestions guys. I had looked at Tkinter before and liked that it comes w/ Python. It's just that it's so complex writing anything. EasyGui is pretty simple, but I relying on standard tools. I liked how in VB, for example, to open a dialog box you could write: MsgBox("Text", vbOKOn

Re: [Tutor] Creating simple windows in XP

2009-01-15 Thread Kent Johnson
On Thu, Jan 15, 2009 at 1:29 AM, Alex Krycek wrote: > Hello, > > I'd like to create very simple GUI's in XP. For the sake of simplicity, I'm > trying to avoid downloading and installing anything (although I am > considering EasyGui). To see how well it works, I've tried having my > program run a

Re: [Tutor] Creating simple windows in XP

2009-01-15 Thread Alan Gauld
"Alex Krycek" wrote I'd like to create very simple GUI's in XP. For the sake of simplicity, I'm trying to avoid downloading and installing anything (although I am considering EasyGui). The basic GUI framework in Python is Tkinter and that works fine on XP. See my tutorial topic on GUI prog

[Tutor] Creating simple windows in XP

2009-01-14 Thread Alex Krycek
Hello, I'd like to create very simple GUI's in XP. For the sake of simplicity, I'm trying to avoid downloading and installing anything (although I am considering EasyGui). To see how well it works, I've tried having my program run a Visual Basic script ( i.e. subprocess.call(someScript.vbs, shel