Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Tk::Tiler issue

Status
Not open for further replies.

MoshiachNow

IS-IT--Management
Feb 6, 2002
1,851
IL
HI,

Trying to present 3 widgets using Tk::Tiler.
Obviously something is missing in the code.Could not manage with a poor documentation on this module.
Appreciate ideas.
thanks
============================

my $NAME1=$frm1->Label(-background=>'white',-text => $Name[$i],-font=>[courier => 9],-width=> 30,-anchor=> 'w')->pack(qw/-anchor w/);
my $SIZE1=$frm1->Label(-background=>'white',-text => $Size[$i],-font=>[courier => 9],-width =>30,-anchor=> 'w')->pack(qw/-anchor w /);
my $DESCRIPTION1=$frm1->Label(-background=>'white',-text => $Description[$i],-font=>[courier => 9],-width=> 30,-anchor=> 'w')->pack(qw/-anchor w/);

my $tl = $frm2->Scrolled('Tiler', -columns => 3, -rows => 20);
$tl->Manage($NAME1,$SIZE1,$DESCRIPTION1);


Long live king Moshiach !
 
Status
Not open for further replies.

Similar threads

Part and Inventory Search

Sponsor

Back
Top