in reply to Re: (ichimunki) Re: Windows GUI programs in Perl
in thread Windows GUI programs in Perl
Obviously the Unicode stuff will need to mature somewhat. But if you are using this all from within Perl, maybe there is a way to cope for now?#!/usr/bin/perl -w use strict; use Tk; my $mw = MainWindow->new(); my $text = $mw->Text()-> pack( -expand => 1, -fill => 'both' ); for my $x (0..255) { $text->insert( 'end', chr($x) ); } MainLoop;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: (ichimunki) Re x 3: Windows GUI programs in Perl
by John M. Dlugosz (Monsignor) on Jul 03, 2001 at 22:33 UTC |