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
/
extfileselectiondialog
< prev
next >
Wrap
Text File
|
2003-09-01
|
457b
|
16 lines
# ----------------------------------------------------------------------
# DEMO: extfileselectiondialog in [incr Widgets]
# ----------------------------------------------------------------------
package require Iwidgets 4.0
iwidgets::extfileselectiondialog .efsd -modality application
button .select -text "Files..." -command {
if {[.efsd activate]} {
puts "selected: [.efsd get]"
} else {
puts ""
}
}
pack .select -side left