11-27-2019 02:58 AM
I think an important function specially for tests that can take a long time to run:
Let us assume a user needs to quit a program and continue the next day or there is a power cut.
Is there a straightforward way to save completely all operations and data currently being run at runtime and reload them as if the program was never closed?
=> data from controls and graphs etc?
Solved! Go to Solution.
11-27-2019 03:09 AM
Hi rajiv,
@rajiv85 wrote:
Let us assume a user needs to quit a program and continue the next day or there is a power cut.
Is there a straightforward way to save completely all operations and data currently being run at runtime and reload them as if the program was never closed?
Yes, there is: you need to log all user actions/settings in a logfile/configuration file.
Load those files at startup of your program and use the saved values from these files…
11-27-2019 03:10 AM
Thank you very much for confirming!