in reply to Re: Perl Tk Insert
in thread Perl Tk Insert
Even the following code produces the same output
open(FILE, "DATA/carownerdata.txt"); my @lines=<FILE>; close(FILE); while ( my $lines = <@lines> ) { chomp (@lines); my @owner = split( /\:/, $lines); $personRight->BrowseEntry(-width=>20,-borderwidth=>2, -relief=>'sunken',-textvariable=>\$perInfo->{CAROWNER},state=> +'disabled', -foreground=>'black',-background=>'white')->pack()->insert( 'e +nd', $owner[1]); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Perl Tk Insert
by Anonymous Monk on Feb 18, 2014 at 06:21 UTC |