Post Reply 
How can I make an app from an application?
04-09-2017, 11:17 AM (This post was last modified: 04-09-2017 11:21 AM by eried.)
Post: #10
RE: How can I make an app from an application?
(04-09-2017 10:33 AM)Onieh Wrote:  I have copy the App Solution. Rename it. Copy my program into the App. When I start the program then the original app is started. Can you show me an example how I have to make it exactly so that my program starts !?

You need to read another app code to learn more about how the apps work. Start by trying:

Code:
Syntax:
VIEW "Text" Function()
BEGIN
END;

Only works in an app program.
Allows a programmer to customize the View menu. Causes "Text" to appear when the View is pressed and Function to be executed when the OK menu key (or ENTER key) is pressed.
Note that a view function can also be exported.

Get any app that you like and check how they use VIEW internally. Also you can put your initial code inside:

Code:
START
BEGIN
STARTVIEW(-1);

MSGBOX("Hello world");
// Do something here

STARTVIEW(-4);
END;

My website: erwin.ried.cl
Visit this user's website Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: How can I make an app from an application? - eried - 04-09-2017 11:17 AM



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