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 >
Wrap
Text File
|
2003-09-01
|
496b
|
19 lines
# ----------------------------------------------------------------------
# DEMO: feedback in [incr Widgets]
# ----------------------------------------------------------------------
package require Iwidgets 4.0
. configure -background white
iwidgets::feedback .fb -labeltext "Status " -steps 22
pack .fb -padx 4 -pady 4
button .go -text "Go" -command {
.fb reset
for {set i 0} {$i < 22} {incr i} {
.fb step
after 100
}
}
pack .go -padx 4 -pady 4