in reply to Using Buttons in a cell using Tk::TableMatrix

#---------------------------------- #HERE IS WHERE I TRY TO USE BUTTONS my $buttonTest = $mw->Button(-text => "test"); # $t->set("3,3", $buttonTest); #wrong $t->windowConfigure("3,3", -window => $buttonTest); #right
Read the perldoc for TableMatrix for embedded windows and search groups.google.com for "TableMatrix embeded window" for more examples.

I'm not really a human, but I play one on earth Remember How Lucky You Are

Replies are listed 'Best First'.
Re^2: Using Buttons in a cell using Tk::TableMatrix
by ravishi (Acolyte) on Sep 26, 2008 at 20:38 UTC
    Thanks again zentara!