Hi all,
I'm developing an app with a timer control to store how long the user takes to do a test. When the user finishes the test, a button patch the timer value into my DB.
The problem I'm suffering now is the following:
If the user closes the app for some reason, I have an auto-save functionality that saves all data (inclusive timer value).
But when he opens the app to continue the test, the timer resets to 00:00:00, and I would like it to continue from the time he previously stopped (time value saved in the DB).
Is there a way to do it using some property from the timer control?
I was thinking about a solution involving (a label that stores in real-time the timer value, but to do this, I need to change a lot of coding in my app.
Thanks!