Hi, I would like to use the tktable widget, but can't find any information on how to pass something as the -variable option and be able to display and retrieve data.
use Tkx; Tkx::package_require("Tktable"); my $mw = Tkx::widget->new("."); my $t = $mw->new_table( -rows => 5, -cols => 3, ); $t->g_pack; Tkx::MainLoop() I found the above in the ActiveState documentation. It works as expected. All attempts to display or retrieve data have failed. Any help would be appreciated. Robert Lindley robert.a.lind...@boeing.com