Post Reply 
Is it possible to run apps from programs
02-02-2014, 04:09 AM (This post was last modified: 02-02-2014 04:23 AM by Mickpc.)
Post: #1
Is it possible to run apps from programs
Is it possible to do so? For example I have the follwing program:

LININT

Code:

EXPORT X1,X2,Y1,Y2; 
EXPORT LININT() 
BEGIN 
INPUT(X2,"X INTERCEPT","Xi=","ENTER THE X INTERCEPT"); 
INPUT(Y1,"Y INTERCEPT","Yi=","ENTER THE Y INTERCEPT"); 
'Y1=M*X1+C'▶E1; 
'Y2=M*X2+C'▶E2; 
0▶X1; 
0▶Y2; 
STARTAPP("Solve"); 
STARTVIEW(2);        
END;
Right after the STARTVIEW(2) I would like to set the variables to solve for and then solve it. Is it possible to do this and where do I find the commands to do so?

Kinds Regards

Mick C

My ebook
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Is it possible to run apps from programs - Mickpc - 02-02-2014 04:09 AM



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