home *** CD-ROM | disk | FTP | other *** search
/ Practical Programming in Tcl & Tk (4th Edition) / TCLBOOK4.BIN / mac / exsource.old / 32_5.tcl < prev    next >
Text File  |  2003-04-15  |  131b  |  10 lines

  1. #
  2. # Example 32-5
  3. # Formatting numeric values in a spinbox.
  4. #
  5.  
  6. spinbox .s2 -from -10 -to 10 -increment .25 -format %4.2f
  7. pack .s2
  8.  
  9.  
  10.