please help me
how to make countdown timerhow to make cout down timer
Page 1 of 1
6 Replies - 13791 Views - Last Post: 19 August 2010 - 04:25 PM
#1
how to make countdown timer
Posted 18 August 2010 - 12:01 PM
how to make coutdown timer,,
please help me
please help me
Replies To: how to make countdown timer
#2
Re: how to make countdown timer
Posted 18 August 2010 - 12:11 PM
I think there is a tutorial on this in the VB.NET tutorials section.
Also, we're happy to help you with your good faith efforts.
Also, we're happy to help you with your good faith efforts.
#3
Re: how to make countdown timer
Posted 18 August 2010 - 12:17 PM
sory, i'm newbie,,,
#4
Re: how to make countdown timer
Posted 18 August 2010 - 12:23 PM
Did you take a look at the VB.NET tutorials section? We're happy to help; but again, please show us your efforts.
#6
Re: how to make countdown timer
Posted 19 August 2010 - 07:18 AM
you mean something like a messagebox popup every second?
#7
Re: how to make countdown timer
Posted 19 August 2010 - 04:25 PM
Define Timer1.Interval as 8000 (8 seconds)
In
In timer1.tick event put this:
Declare:
» After Public Class.
In
form_load()put this:
Timer1.enabled = true Timer1.start
In timer1.tick event put this:
If int = 0 Then
Msgbox("Done!")
Timer1.Stop
Timer1.Enabled = false
Else
Int -= 1
End if
Declare:
Dim int as Integer = 8
» After Public Class.
This post has been edited by bioshock: 20 August 2010 - 01:26 PM
Page 1 of 1
|
|

New Topic/Question
Reply




MultiQuote








|