Hi

 

I have about 4000 items to put into a combo box, does anyone know of a
faster way than to simply loop through the items appending each individual
item? My code is below.

 

Many thanks

 

Peter

 

$this->{externalData}->{serviceDescriptions} =
APM->getServiceDescriptions($this);

my $serviceDescs = &GetApdconnectorsservicedesc($this);

$serviceDescs->Append("");

foreach my $sd (keys %{$this->{externalData}->{serviceDescriptions}})

            {$serviceDescs->Append($sd);};

Reply via email to