python GUI without windowhandle

johngrayson at home.com johngrayson at home.com
Tue Sep 4 12:25:03 EDT 2001


If you're using Tkinter, then set the overrideredirect flag...


e.g.

    shell = Tkinter.Toplevel(root)
      .......
    shell.overrideredirect(1)
      .......

  John





More information about the Python-list mailing list