codeacrobat has asked for the wisdom of the Perl Monks concerning the following question:
I am running Perl 5.8.8 and Tk 804.027. I try to get ZooZ - the Perl/Tk GUI builder to work. First of all ZooZ.pl doesn't startup unless I add the -nosplash option.
When running perl ZooZ.pl -nosplash I get a fatal error "Can't locate auto/Tk/Frame/header.al in @INC". It is possible to continue loading the gui, however I can not configure widgets.
The error occurs at ZooZ/Forms.pm Line 891.
$hl is just a Tk::Form, which does not have a header subroutine. I guess it was intended to use Tk::HList::header.my $hl = $top->Scrolled(HList => -scrollbars => 'se', -bg => 'white', -header => 1, -columns => 4, )->grid(-row => 1, -column => 0, -rowspan => 2, -sticky => 'nsew', ); $hl->header(create => 0, -relief => 'raised', -text => 'Label'); $hl->header(create => 1, -relief => 'raised', -text => 'Type'); $hl->header(create => 2, -relief => 'raised', -text => 'Accelerator' +); $hl->header(create => 3, -relief => 'raised', -text => 'Command');
Does anyone know how to make this work?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: ZooZ Autoloader error
by zentara (Cardinal) on Aug 24, 2007 at 13:09 UTC | |
by Anonymous Monk on Aug 24, 2007 at 14:19 UTC | |
by zentara (Cardinal) on Aug 24, 2007 at 14:37 UTC | |
by Anonymous Monk on Aug 24, 2007 at 14:53 UTC | |
|
Re: ZooZ Autoloader error
by wazoox (Prior) on Oct 15, 2007 at 11:47 UTC | |
by Anonymous Monk on Nov 15, 2009 at 21:05 UTC | |
|
Re: ZooZ Autoloader error
by Anonymous Monk on Aug 24, 2007 at 14:51 UTC | |
by moked (Beadle) on May 18, 2008 at 14:10 UTC | |
by frito (Initiate) on Oct 15, 2007 at 00:12 UTC |