I am sorry I forgot to cc the list

Hi Rob,

The snippet I posted with the space works.  When I try it either way
you suggessted it still does not work.  Both give this error:

Use of uninitialized value in concatenation (.) or string at D:\Scriptz\lc3.pl l
ine 23, <stdin> line 2.
Use of uninitialized value in concatenation (.) or string at D:\Scriptz\lc3.pl l
ine 23, <stdin> line 2.

Try it out yourself and tell me if you get different results then I do.

Thanks again for the effort!


On Sun, 20 Feb 2005 03:08:22 +0000, Sisyphus <[EMAIL PROTECTED]> wrote:
> fad3r wrote:
>
> >       $can_file = $name $file2;
>
> That's the syntax error - you probably meant
> $can_file = "$name$file2";
> or
> $can_file = $name . $file2;
> or something like that.
>
> Cheers,
> Rob
>
>
_______________________________________________
Perl-Win32-Users mailing list
[email protected]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to