Hi Amit,

    There should be only one instance of Tk() in your Tkinter
    Application (if I remember correctly).

    So if you want to create additional windows use Toplevel() instead
    of Tk(). Toplevel takes optional parent window argument like
    Toplevel(win)

    so line 96 should look like

    win2=Toplevel()

    HTH

    -- 
    Godson Gera,
    http://godson.in
    Python Tkinter India.


You remember correctly. This is indeed the solution.


Thanks!


Amit.

_______________________________________________
Tkinter-discuss mailing list
[email protected]
http://mail.python.org/mailman/listinfo/tkinter-discuss

Reply via email to