in reply to text widget in Perl/Tk question
$text = $mw->Scrolled("Text")->pack(); open( FILE, "MyText" ) or die "Arghh...$!\n"; while( <FILE> ) { $text->insert('end', $_ ); } close FILE;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: text widget in Perl/Tk question
by Anonymous Monk on Oct 30, 2002 at 06:15 UTC | |
by jdporter (Paladin) on Oct 30, 2002 at 18:36 UTC |