Post Reply 
CHOOSE instruction
01-01-2014, 08:19 PM (This post was last modified: 01-01-2014 08:23 PM by Eddie W. Shore.)
Post: #2
RE: CHOOSE instruction
The apps I believe will always start at their "home screen".

Assuming your info page is blank, we could use the Info View - which only leaves the top and menu bars.

Code:
//Variables
 ChooseMain;

 //-----------------------------------------------------------------
 EXPORT TestApp()
 BEGIN
 END;

 VIEW "Start TestApp",START()
 BEGIN
 
// View info page - assuming it's blank 

STARTVIEW(6,1);

   CHOOSE(ChooseMain,"TESTAPP MAIN MENU","TestApp Selection...");
   CASE
     IF ChooseMain==1 THEN STARTVIEW(-7,1); END; 
   END;
 WAIT(1);
 MSGBOX("Exit Subroutines");
 END;


If there was a code for STARTVIEW that let's the user see the terminal screen, that would be perfect, but I don't think there is one.
Visit this user's website Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
CHOOSE instruction - Bob Frazee - 01-01-2014, 04:29 PM
RE: CHOOSE instruction - Eddie W. Shore - 01-01-2014 08:19 PM



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