in reply to strange error message
The last block of code added to the program was some 200 lines earlier:@sess_funcs = ("F1E","F1W","F1N","F1S"); @v_funcs = ("$oev_code","$oevc_code"); @eprep_funcs = ("$oe_e","$e_e"); @ev_funcs = (@sess_funcs,@v_funcs,@eprep_funcs);
What I am trying to understand it what is meant by trying to "coerce UNKNOWN" and what a "gv" is. I can guess that "gv" might be a global variable but I don't know that.if (! $date_to_use) { $msg = "Enter or confirm the date to schedule. \n"; while (! $date_to_use) { $msg .= " (mmmdd, mmmd, or mmm dd)\.\n"; $intext = $excel->InputBox("$msg","Enter date","$assumed_date" +); go_away(16,"Quitting as requested\.") if ($intext eq "0"); $date_to_use = check_date($intext); $msg = "Date error. Re-enter.\n" if (! $date_to_use); } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: strange error message
by Anonymous Monk on Aug 22, 2008 at 08:33 UTC | |
by Narveson (Chaplain) on Aug 22, 2008 at 10:32 UTC | |
by dave_the_m (Monsignor) on Aug 22, 2008 at 13:02 UTC |