Posted on 2005-02-10 06:01:03-08 by aqumsieh in response to 75
Re: Tk-ToolBar v0.09 option -in
Hi,

The reason for your problems is that you are using qw// which does not interpolate.
So basically qw/$var/ is a list of one element, that element being the string '$var'.
To fix it, you can do this:

my $tbMain2 = $winMain->ToolBar(-side => 'top', -in => $tbMain, );

One more thing: you misspelled 'movable' :)
--Ala
Direct Responses: 147 | Write a response
Perl Weekly newsletter
A free weekly newsletter for people who are busy to read all the blogs. click here to check it out.