Question Stopwatch help

StarKiller512

Member
Joined
Nov 15, 2012
Messages
13
Programming Experience
1-3
I am creating a game for educating young children. i have 24 forms, as soon as they press the start button, a Timer(which has been set to 0) will be activated and will keep going till they have finsihed answering the questions. My question is this, i want the stopwatch/Timer to be implemented throughout 24 forms. i've thought of using a Module but i need help with how i would go about doing this.
 
Publicly declare your stopwatch in your module

Public myStopWatch As New Stopwatch


Then you can check if it is running, start it, stop it, reset it, whatever, from any of your forms.
 
Back
Top