home *** CD-ROM | disk | FTP | other *** search
/ Practical Programming in Tcl & Tk (4th Edition) / TCLBOOK4.BIN / pc / exsource.old / 40_3.tcl < prev    next >
Text File  |  2003-04-15  |  236b  |  13 lines

  1. #
  2. # Example 40-3
  3. # A gridded, resizable listbox.
  4. #
  5.  
  6. wm minsize . 5 3
  7. button .quit -text Quit -command exit
  8. pack .quit -side top -anchor e
  9. Scrolled_Listbox .f -width 10 -height 5 -setgrid true
  10. pack .f -side top -fill both -expand true
  11.  
  12.  
  13.