![]() |
Need Help with INPUT - Printable Version +- HP Forums (https://www.hpmuseum.org/forum) +-- Forum: HP Calculators (and very old HP Computers) (/forum-3.html) +--- Forum: HP Prime (/forum-5.html) +--- Thread: Need Help with INPUT (/thread-795.html) |
Need Help with INPUT - Eddie W. Shore - 03-01-2014 07:54 PM I keep getting Error: Invalid Input and I don't get where the error is or what causes it. Does INPUT not work within loops? Any help is greatly appreciated. Program: Code: EXPORT EXPSMTH() RE: Need Help with INPUT - Terje Vallestad - 03-01-2014 08:33 PM (03-01-2014 07:54 PM)Eddie W. Shore Wrote: IF C==1 There may be other issues, but should there not be a THEN after the C==1, similar to the rest of your code? Cheers, Terje RE: Need Help with INPUT - Eddie W. Shore - 03-01-2014 09:16 PM (03-01-2014 08:33 PM)Terje Vallestad Wrote:(03-01-2014 07:54 PM)Eddie W. Shore Wrote: IF C==1 Thanks - there should be. Typo on my part. RE: Need Help with INPUT - cyrille de brébisson - 03-03-2014 07:03 AM Hello, Are you sure that the input is the issue? It looks to me that your textout are problematic > TEXTOUT_P(12,0,"# OF POINTS: "+STRING(S),2); should be TEXTOUT_P("# OF POINTS: "+STRING(S),12,0,2); Cyrille RE: Need Help with INPUT - Eddie W. Shore - 03-11-2014 01:55 PM Thanks Cyrille! I hope to have the complete program (and it's correct syntax) posted soon. |