Re: TIB: Basic '86 -Why doesn't this Work?


[Prev][Next][Index][Thread]

Re: TIB: Basic '86 -Why doesn't this Work?




> Why doesn't this work? This picture draws OK, and places the @ symbol,
> and I think it waits for the getky, but when I hit exit(key 22) it
> doesn't quit. What am I doing wrong?

Put :lbl ABC _ABOVE_ :getky->A

This part:
:DispG
:getKy(storeto)A
:Lbl ABC
:If A==22
:Then
:Goto OFF
:Else
:Goto ABC

Should be:
:DispG
:Lbl ABC
:getKy(storeto)A
:If A==22
:Then
:Goto OFF
:Else
:Goto ABC