Post Reply 
STARTVIEW and Programming
04-07-2021, 07:36 PM (This post was last modified: 04-07-2021 07:40 PM by C.Ret.)
Post: #4
RE: STARTVIEW and Programming
Hello,

I see nothing special here, all seem to act as expected !?

If you want to terminate your code at the HOME or CAS view, you just have to specify it:

Code:
EXPORT teststartview2()
BEGIN
 MSGBOX("before startview");
 STARTVIEW(2);                                   // Activate the Numeric View (exact display depending of the curent Application ) 
 MSGBOX("after startview");
 INPUT(A);
 B:=A+1;
 PRINT("B = "+STRING(B));
 STARTVIEW(-1)                                 // Activate the HOME or CAS view just before the end of code
END;

See the inline ?-Help key for the different available views (specific to the current Application, user customized or global).
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
STARTVIEW and Programming - Eddie W. Shore - 04-06-2021, 12:17 AM
RE: STARTVIEW and Programming - roadrunner - 04-07-2021, 12:26 AM
RE: STARTVIEW and Programming - C.Ret - 04-07-2021 07:36 PM



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