in reply to XUL::Gui and Loop structure

Try storing the search results in a scalar or array and display it using Label.

Something like:
my %hash(...define your hash here...); my $searchterm=<>; my $store; #or my @store if(exists($hash{$searchterm})) { $store=$hash{$searchterm}; #or you can use push(@store,$hash{$searchterm}) } #some code #to print on label just pass the $store or @store as #parameter to Label() of your GUI package.

Replies are listed 'Best First'.
Re^2: XUL::Gui and Loop structure
by deep3101 (Acolyte) on May 31, 2011 at 03:08 UTC

    And repeat that as many times you want within a for(;;) while() or until() etc.