Post Reply 
Towards custom RPN mode: How to Completely override application?
09-16-2015, 06:32 PM (This post was last modified: 09-17-2015 07:46 AM by xset.)
Post: #1
Towards custom RPN mode: How to Completely override application?
I need completely override application and restart it after Shift-Off, but it ignores Plot function and shows Plot view of parent application (from which i inherit main).

Calculator ignores Plot function at all in number of condition.

EXPORT MyApp()
BEGIN
STARTVIEW(1,1);
END;

START()
BEGIN
STARTVIEW(1,1);
END;

Plot()
BEGIN
RECT();
TEXTOUT_P("Begin",10,10);
WHILE 1 DO END;
END;

This is strange "inheritance" if we can't control original application.

Many thanks
XSet
Find all posts by this user
Quote this message in a reply
09-17-2015, 01:33 PM
Post: #2
RE: Towards custom RPN mode: How to Completely override application?
I have found at least we can intercept ON key preventing unforeseen exit form the app. But it will not start automatically after Shift-Off -> On ???
Find all posts by this user
Quote this message in a reply
Post Reply 




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