Post Reply 
Green background with GetKey Problem!?
03-17-2017, 03:46 PM
Post: #1
Green background with GetKey Problem!?
RE: How make a green Background by a Choose Funktion
okay, what is with this Solution.
But i don't why the Program leave the Repeat-Until Funktion when i press 1, repeat1.. or 2, repeat 2.. or 3 and repeat 3..?


EXPORT NewInput()
BEGIN

RECT_P(0,0,320,220,RGB(0,255,0));

TEXTOUT_P("F L U G N A V I G A T I O N",31,20,7,RGB(255,255,255));

TEXTOUT_P("Press 1 für: ICAO",70,70);
TEXTOUT_P("Press 2 für: POSITION",70,100);
TEXTOUT_P("Press 3 für: FLUGSTRECKE",70,130);
TEXTOUT_P("Press Del für Abbruch",70,160);

REPEAT
K:=GETKEY;
IF K==42 THEN PRINT("ICAO"); END; //KEY Test
IF K==43 THEN PRINT("POSITION"); END; //KEY TEST
IF K==44 THEN PRINT("FLUGSTRECKE"); END; //KEY TEST
UNTIL K==19;

STARTVIEW(-1);
END;
Find all posts by this user
Quote this message in a reply
03-17-2017, 04:22 PM
Post: #2
RE: Green background with GetKey Problem!?
Rethink UNTIL K==19; line

My website: erwin.ried.cl
Visit this user's website Find all posts by this user
Quote this message in a reply
03-17-2017, 04:31 PM
Post: #3
RE: Green background with GetKey Problem!?
What do you mean?
Find all posts by this user
Quote this message in a reply
03-17-2017, 04:48 PM
Post: #4
RE: Green background with GetKey Problem!?
Do you mean

UNTIL K==19 or K==42 or K==43 or K== 44;
Find all posts by this user
Quote this message in a reply
03-17-2017, 06:52 PM
Post: #5
RE: Green background with GetKey Problem!?
(03-17-2017 04:48 PM)Onieh Wrote:  Do you mean

UNTIL K==19 or K==42 or K==43 or K== 44;

That is an option Smile

My website: erwin.ried.cl
Visit this user's website Find all posts by this user
Quote this message in a reply
03-17-2017, 09:46 PM
Post: #6
RE: Green background with GetKey Problem!?
And the other one?
Find all posts by this user
Quote this message in a reply
Post Reply 




User(s) browsing this thread: 1 Guest(s)