On 05/24/00, "Wagner-David <[EMAIL PROTECTED]>" wrote:
> This message is in MIME format. Since your mail reader does not understand
> this format, some or all of this message may not be legible.
> 
> ------_=_NextPart_000_01BFC5BE.672E2A00
> Content-Type: text/plain;
>       charset="iso-8859-1"

Next time try to post in plain text.


>        my $sauditt = backtick("Type $qvmin");
>        $auditt = $sauditt;
>        $sauditt = backtick("Type $qvmdata");
>        $auditt .= $sauditt;
>        
>        foreach ( @$auditt ) {

If $auditt is an array reference, then '.=' is
the wrong operator ('.' is for string concatenation).

You could just say:

foreach (@$auditt, @$sauditt) {

Or if you really need one array ref which includes
both arrays, you could say:

$auditt = [@$auditt, @$sauditt];


HTH,
Douglas Wilson

---
You are currently subscribed to perl-win32-users as: [archive@jab.org]
To unsubscribe, forward this message to
         [EMAIL PROTECTED]
For non-automated Mailing List support, send email to  
         [EMAIL PROTECTED]

Reply via email to