home *** CD-ROM | disk | FTP | other *** search
/ Practical Programming in Tcl & Tk (4th Edition) / TCLBOOK4.BIN / pc / exsource.old / 44_4.tcl < prev    next >
Text File  |  2003-04-15  |  252b  |  16 lines

  1. #
  2. # Example 44-4
  3. # Controlling a pair of listboxes with one scrollbar.
  4. #
  5.  
  6. scrollbar $frame.s -orient vertical \
  7.     -command [list BindYview [list $frame.key $frame.cmd]]
  8.  
  9. proc BindYview { lists args } {
  10.     foreach l $lists {
  11.         eval {$l yview} $args
  12.     }
  13. }
  14.  
  15.  
  16.