Thread Text Dokument
(3 answers)
Opened by dragon at 2006-01-24 16:33
Relativ einfach mit Tk::Pane
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 #!/usr/bin/perl use strict; use warnings; use Tk; use Tk::Pane; my $mw = MainWindow->new; my $p = $mw->Scrolled('Pane')->pack; $p->Label(-text => "text\n" x 25)->pack; MainLoop; ,,Das perlt aber heute wieder...'' -- Dittsche
|