Thanks guys I was able to resolve it by changing
self.txt_box = Entry(self, text = "hool").grid(row = 0, column = 1, sticky = W)
to
self.txt_box = Entry(self, text = "hool")
self.txt_box.grid(row = 0, column = 1, sticky = W)
and
self.txt_box.insert(END,trt)
to
self.txt_box.insert(0,trt)
b
Thanks
I made the changes and the error was still there
"print self.favorite.get()" prints the name of the selected database on the
console
From: James Reynolds
To: adedoyin adegoke
Cc: tutor@python.org
Sent: Fri, April 2, 2010 2:26:36 PM
Subject: Re: [Tutor