donrecardo
Member
- Joined
- Sep 24, 2009
- Messages
- 14
- Programming Experience
- Beginner
I am very new to the forum ( about 50 mins ago) so Hi everyone.
I am almost as new to VB ( about 2 weeks ) . I started learning at college 2 weeks ago, but we only do 1 evening a week and at my age ( 60) with no programming background its not sinking it as fast I would like. I have been doing lots of reading of VB tutorials and that seems to help. Please bear with me if I dont understand everything you explain to me the first go around .
I did have two problems to ask about and after writing a great long screed to you all asking for help how to ,,,,,,, I suddenly worked out the answer for myself , so now I only have one question left ( dont worry , there will be more , lots more
)
I have a variable which I called ElapsedTime . I press a button and it displays
the time in seconds since clicking the button, into a label . I did it with
This updates every second a bit like a simple stop watch. Great so far
, because I do need the elapsed time ( in seconds) for later use in my app. However , whilst elapsed time is being displayed in this label on the screen I want it to be shown in HH:MM:SS format .
How can I convert it into a new variable " ElapsedTime2 " so that I can show it in the desired format yet still retain my original " ElapsedTime " variable for later
Regards
Don
I am almost as new to VB ( about 2 weeks ) . I started learning at college 2 weeks ago, but we only do 1 evening a week and at my age ( 60) with no programming background its not sinking it as fast I would like. I have been doing lots of reading of VB tutorials and that seems to help. Please bear with me if I dont understand everything you explain to me the first go around .
I did have two problems to ask about and after writing a great long screed to you all asking for help how to ,,,,,,, I suddenly worked out the answer for myself , so now I only have one question left ( dont worry , there will be more , lots more
I have a variable which I called ElapsedTime . I press a button and it displays
the time in seconds since clicking the button, into a label . I did it with
HTML:
Private Sub Timer2_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer2.Tick
LblElapsedTime1.Text = ElapsedTime
ElapsedTime = ElapsedTime + 1
End Sub
Private Sub BtnStart_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BtnStart.Click
Timer2.Enabled = True
End Sub
This updates every second a bit like a simple stop watch. Great so far
How can I convert it into a new variable " ElapsedTime2 " so that I can show it in the desired format yet still retain my original " ElapsedTime " variable for later
Regards
Don