Re: [Perl-unix-users] Win32::GUI Appending Text to Label or TextField

2004-01-30 Thread du4mi
Hello instig8r, Friday, January 30, 2004, 9:28:40 PM, you wrote: i> Can someone show me a way to append text to a Win32::GUI::Label or i> Win32::GUI::TextField object? i> Right now, doing a: $first = "First Line"; $second = "Second Line"; $Lable->Text($first); $Lable->Text($first$second); ___

[Perl-unix-users] Win32::GUI Appending Text to Label or TextField

2004-01-30 Thread instig8r .
Can someone show me a way to append text to a Win32::GUI::Label or Win32::GUI::TextField object? Right now, doing a: $Lable->Text("First Line"); $Lable->Text("Second Line"); results in only one line being displayed: "Second Line". Can I get text appended instead of overwritten in a label or te