Author Topic: Error trapping Y/N input  (Read 5971 times)

0 Members and 1 Guest are viewing this topic.

Offline SMcNeill

  • QB64 Developer
  • Forum Resident
  • Posts: 3972
    • View Profile
    • Steve’s QB64 Archive Forum
Re: Error trapping Y/N input
« Reply #15 on: September 25, 2018, 12:17:47 pm »
I'm guessing the LOOP UNTIL INSTR(limiter$, Limit$) issue was with Limit$ trying to call itself as a FUNCTION there, which errored out.  A temp variable stops the recursion and lets it run properly.  ;)
https://github.com/SteveMcNeill/Steve64 — A github collection of all things Steve!

Offline MWheatley

  • Newbie
  • Posts: 64
    • View Profile
Re: Error trapping Y/N input
« Reply #16 on: September 25, 2018, 02:03:24 pm »
Well, it works now, so that's fine!

Malcolm