Hello,
I'm looking at making a time keeping app that users the timer control to track someone's ongoing time for working on a specific project. I have a start, stop, and reset button setup and want to change the text from 00:00:00 to some time with another text input field and a button.
I would like to set the timer's current value property so the text that is displaying shows what their current time is if they leave and come back to to the app. So far I can only change the text of the control but not the actual value itself. Might not be possible in which case I can look at another solution but if anyone knows how to do this that would be fantastic.
Set(timer1.Value, myVariable)
Obviously this doesn't work since timer1.Value isn't a contextual variable and there is no Value property surfaced on the control. Any workarounds or suggestions would be appreciated!
Thank you