home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / feedback < prev    next >
Text File  |  2003-09-01  |  496b  |  19 lines

  1. # ----------------------------------------------------------------------
  2. #  DEMO: feedback in [incr Widgets]
  3. # ----------------------------------------------------------------------
  4. package require Iwidgets 4.0
  5.  
  6. . configure -background white
  7.  
  8. iwidgets::feedback .fb -labeltext "Status                    " -steps 22
  9. pack .fb -padx 4 -pady 4
  10.  
  11. button .go -text "Go" -command {
  12.     .fb reset
  13.     for {set i 0} {$i < 22} {incr i} {
  14.         .fb step
  15.         after 100
  16.     }
  17. }
  18. pack .go -padx 4 -pady 4
  19.