home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2002 May
/
PCWorld_2002-05_cd.bin
/
Software
/
TemaCD
/
activetcltk
/
ActiveTcl8.3.4.1-8.win32-ix86.exe
/
ActiveTcl8.3.4.1-win32-ix86
/
demos
/
IWidgets
/
fileselectiondialog
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
2001-10-22
|
448 b
|
16 lines
# ----------------------------------------------------------------------
# DEMO: fileselectiondialog in [incr Widgets]
# ----------------------------------------------------------------------
package require Iwidgets 4.0
iwidgets::fileselectiondialog .fsd -modality application
button .select -text "Files..." -command {
if {[.fsd activate]} {
puts "selected: [.fsd get]"
} else {
puts ""
}
}
pack .select -side left