#!/usr/bin/wish -f load tkzinc3.1.so set top 1 set r [zinc .r] pack $r -expand t -fill both $r configure -width 800 -height 500 set view [$r add group $top] set tab1 [$r add tabular $view 10 -position "100 100" -labelformat "100x30"] set tab2 [$r add tabular $view 10 -position "100 150" -labelformat "100x30"] set tab3 [$r add tabular $view 10 -connecteditem $tab2 -labelformat "100x30"] $r itemconfigure $tab1 0 -text "tab1" $r itemconfigure $tab2 0 -text "tab2" $r itemconfigure $tab3 0 -text "tab3"