simple script - Tkinter question.

2006-07-03 Thread jkuo22
Hi everyone, Here is my simple Tkinter script: ## start of entry.py from Tkinter import * root=Tk() e1=Entry(root, width=16) e1.pack() e2=Entry(root, width=16) e2.pack() mainloop() ## end First, it works on win2k. When I run it as 'python entry.py' on linux, both 'e1' and 'e2' appear perfectly e

simple script - Tkinter question.

2006-07-03 Thread jkuo22
Hi everyone, Here is my simple Tkinter script: ## start of entry.py from Tkinter import * root=Tk() e1=Entry(root, width=16) e1.pack() e2=Entry(root, width=16) e2.pack() mainloop() ## end First, it works on win2k. When I run it as 'python entry.py' on linux, both 'e1' and 'e2' appear perfectly e