Jan 8, 2005 #1 MrE4U Programmer Mar 29, 2003 11 US How would open a new tk window from a existing tk window by pressing a button? Thank You
Jan 10, 2005 1 #2 Bong Programmer Dec 22, 1999 2,063 US the widget name for a new window is "toplevel". The syntax is something like: toplevel .<name> So you would assign to the -command option of the button the toplevel creation: button .<whatever> -text <whatever> -command {toplevel .<name>} Bob Rashkin rrashkin@csc.com Upvote 0 Downvote
the widget name for a new window is "toplevel". The syntax is something like: toplevel .<name> So you would assign to the -command option of the button the toplevel creation: button .<whatever> -text <whatever> -command {toplevel .<name>} Bob Rashkin rrashkin@csc.com