> 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