in reply to Re: Re: "this" variable?
in thread "this" variable?
fails. My code currently is this:$selection = $comboboxes[$self]->GetString($comboboxes[$self]->Selecte +dItem);
If those print lines weren't commented out, the output is "In ComboBox - ". Is my logic wrong here, or just my coding? Is there an easier solution I'm overlooking that would still allow for my arrays to grow with the spreadsheet?sub ComboBox{ $self = shift; #print "In ComboBox - $self"; $selection = $comboboxes[$self]->GetString($comboboxes[$self]->Sel +ectedItem); #print $selection; } foreach my $x (0..$count){ $SUB = $accounts[$x]."ComboBox_Change"; *$SUB = \&ComboBox; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: "this" variable?
by Ovid (Cardinal) on May 30, 2002 at 20:31 UTC | |
by jsprat (Curate) on May 30, 2002 at 21:25 UTC | |
|
Re: "this" variable?
by Abigail-II (Bishop) on Jun 03, 2002 at 09:08 UTC |