> > print @mapped; > > $dialog=$top->Dialog(-title=>"Fertig", -text=>"Die > > Laufwerke\n".@mapped."\nwurden erfolgreich > > angebunden",-buttons=>[qw/Ok/])->Show;
> That's because the second use evaluates @mapped in a scalar context, > which returns the number of entries. You probably want to interpolate > the array directly in the string (see doco on variable $") or use > join. ok, replacing "@mapped" with "join($",@mapped)" worked, but I still don't understand why the array would get evaluated in a scalar context? Thanks, Lars _______________________________________________ ActivePerl mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
