Re: [nlug] Perl Uninitialized Value in Formline

2011-04-12 Thread Paul Boniol
I now have: print "CurDate is not defined\n" if (!defined $curdate); print "Term is not defined\n" if (!defined $term1); print "Term is undefined.\n" if (!defined $term); print "SSN is undefined.\n" if (!defined $SSN); print "ele is undefi

Re: [nlug] Perl Uninitialized Value in Formline

2011-04-12 Thread Robert Wohlfarth
On Tue, Apr 12, 2011 at 6:01 PM, Paul Boniol wrote: > On Tue, Apr 12, 2011 at 7:21 AM, Robert Wohlfarth > wrote: > >> On Mon, Apr 11, 2011 at 11:46 PM, Paul Boniol wrote: >> >>> I have a warning coming out of a Perl program, I know where the warning >>> comes from, but I have no clue how to stop

Re: [nlug] Perl Uninitialized Value in Formline

2011-04-12 Thread Paul Boniol
On Tue, Apr 12, 2011 at 7:21 AM, Robert Wohlfarth wrote: > On Mon, Apr 11, 2011 at 11:46 PM, Paul Boniol wrote: > >> I have a warning coming out of a Perl program, I know where the warning >> comes from, but I have no clue how to stop the warning. The only thing I >> found with a google search wa

Re: [nlug] Perl Uninitialized Value in Formline

2011-04-12 Thread Robert Wohlfarth
On Mon, Apr 11, 2011 at 11:46 PM, Paul Boniol wrote: > I have a warning coming out of a Perl program, I know where the warning > comes from, but I have no clue how to stop the warning. The only thing I > found with a google search was advice from people to turn warnings off... > I'm not a "form

[nlug] Perl Uninitialized Value in Formline

2011-04-11 Thread Paul Boniol
I have a warning coming out of a Perl program, I know where the warning comes from, but I have no clue how to stop the warning. The only thing I found with a google search was advice from people to turn warnings off... I'm not a "format" wizard, but everything seems fine to me.. The error is "Us