Global values disappearing

Hi
I created global values I am using in a update window eg. Total. When entering a total in the global field the app accepts the total. When I close the App and open it the total diappears. Is ther a way or setting to make the global field stay:

Thanks in advance

Globals only exist whilst the app is running. When you close the app (session), the globals are destroyed.

If you want to save some data between app sessions, you can save them to an ini file, the registry or create a file which stores the data in fields and assign a record ID of 1 to the record so you can fetch the record when the app restarts and load the data from the file into the globals.

In the template there’s a place to save and retreive values. It uses the ini files you defined.
Have a look at that