On 4/10/06, Gallagher, Tim (NE) <[EMAIL PROTECTED]> wrote: > I have a vb script example that I am trying to convert to Perl. Most of > the script is done except for the last part. Can some tell me what I am > missing? Here is the script. > Start Script snip
The script should start with use strict; use warings; That will help you pinpoint errors. "use diagnostics;" can be helpful if you don't know what the error messages mean (it tries to be a more verbose version of "use warnings;"). Beyond that, what error messages are you getting? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>
