Re: [perl-win32-gui-users] Dynamic entrys

2003-07-29 Thread Aldo Calpini
Peter Eisengrein wrote: > for ($x=1; $x <= $mechs; ++$x) { > $main->MECH$x->Text("$MECH{$x}{'name'}\'s best > Strength setting is $MECH{$x}{'best'}."); > } you can access sub-windows (eg. controls) as hash keys of the main window. change your code to: $main->{"MECH$x"}->Text( "blah bl

RE: [perl-win32-gui-users] Dynamic entrys

2003-07-28 Thread Peter Eisengrein
ui-users@lists.sourceforge.net Subject: [perl-win32-gui-users] Dynamic entrys Okay, I'm pretty new at Win32::GUI, so I need some assistance. I'm using LWP to get info from web pages. I add labels and there name is changes for each one, because there is no limit to how many lines I'll have. Howeve

[perl-win32-gui-users] Dynamic entrys

2003-07-26 Thread Chris
Okay, I'm pretty new at Win32::GUI, so I need some assistance. I'm using LWP to get info from web pages. I add labels and there name is changes for each one, because there is no limit to how many lines I'll have. However, When I go to refresh the info, I grab it and such, but when I get into update