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 / extfileselectiondialog < prev    next >
Encoding:
Text File  |  2001-10-22  |  457 b   |  16 lines

  1. # ----------------------------------------------------------------------
  2. #  DEMO: extfileselectiondialog in [incr Widgets]
  3. # ----------------------------------------------------------------------
  4. package require Iwidgets 4.0
  5.  
  6. iwidgets::extfileselectiondialog .efsd -modality application
  7.  
  8. button .select -text "Files..." -command {
  9.     if {[.efsd activate]} {
  10.         puts "selected: [.efsd get]"
  11.     } else {
  12.         puts ""
  13.     }
  14. }
  15. pack .select -side left
  16.