On 31.12.2004, at 16:50, Harlin Seritt wrote:
import Tix
from Tkconstants import *
from Tkinter import *
root = Tix.Tk()
Label(root, text="Hello!").pack()
Tix.tixControl().pack()
root.mainloop()
When I run this, I get the following error:
Traceback (most recent call last):
File "TixTest.py", lin
I am trying to create a simple window using the following code:
--code---
import Tix
from Tkconstants import *
from Tkinter import *
root = Tix.Tk()
Label(root, text="Hello!").pack()
Tix.tixControl().pack()
root.mainloop()
---code---
When I run this, I get the following error:
Traceback (mo