in reply to adding multiple labels with win32::GUI
Try $label1->Show(); rather than $label1->show();. You even have an example: $mw->Show(); 2 lines away :)
Also, if you add the -wrap=1 option to your label, and make it big enough for multiple lines, it will avoid the need for multiple labels.
However, if you want to control where new lines start yourself, then you'd probably better of with a listbox rather than a label.
|
|---|