home *** CD-ROM | disk | FTP | other *** search
/ Practical Programming in Tcl & Tk (4th Edition) / TCLBOOK4.BIN / pc / exsource / 35_1.tcl < prev    next >
Text File  |  2003-04-16  |  209b  |  12 lines

  1. #
  2. # Example 35-1
  3. # Using listvariable to link a listbox and variable.
  4. #
  5.  
  6. listbox .choices -height 5 -width 20 -listvariable states
  7. pack .choices
  8. lappend states Arizona
  9. lappend states California "New Mexico"
  10.  
  11.  
  12.