Re: Python not importing mysqldb

2009-04-26 Thread Ioannis Lalopoulos
On Apr 25, 11:45 pm, 83nini <83n...@gmail.com> wrote: > On 25 Apr, 18:35, Marco Bizzarri wrote: > > > > > > > On Fri, Apr 24, 2009 at 10:04 PM, 83nini <83n...@gmail.com> wrote: > > > hi guys, > > > > i've been sweating the whole day trying to make python work with mysql > > > but in vain! > > > i'

Re: Tkinter, Trouble with Message,Label widget

2009-05-03 Thread Ioannis Lalopoulos
I assume that you create the two windows through two different calls to Tkinter.Tk() but you cannot enter two mainloops (at least not in a normal way). If you want a second window use the Toplevel widget. Try the following, it does what you want: import Tkinter root = Tkinter.Tk() my_text = Tk