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 / tabset < prev    next >
Text File  |  2003-09-01  |  404b  |  17 lines

  1. # ----------------------------------------------------------------------
  2. #  DEMO: tabset in [incr Widgets]
  3. # ----------------------------------------------------------------------
  4. package require Iwidgets 4.0
  5.  
  6. proc showTab {num} {
  7.     puts "selected: [.ts tabcget $num -label]"
  8. }
  9.  
  10. iwidgets::tabset .ts -command showTab
  11. pack .ts
  12.  
  13. for {set i 1} {$i <= 5} {incr i} {
  14.     .ts add -label "#$i"
  15. }
  16. .ts select 0
  17.