Posted on 2005-02-10 06:01:03-08
by aqumsiehin 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,
);