in reply to Delete the text widget contents using perl_tk
Refer the Links.use Tk; use Tk::Text ; . . . my $txt = $mw->Text( -background =>'white', )-> pack (); . . . $txt -> delete('1.0','end');
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Delete the text widget contents using perl_tk
by choroba (Cardinal) on Apr 17, 2010 at 07:48 UTC | |
by Anonymous Monk on Apr 17, 2010 at 08:27 UTC |