make a timer out of a label caption on visual basic 6.0 it is easy hope you enjoy and please suscribe here is the code
VVVVVVVVVVVV
Label1.Caption = Label1.Caption - 1
^^^^^^^^^^^^^
Or if you want to count down from zero
VVVVVVVVVVVVVVVVVVV
If Label1.caption = 0 Then
Msgbox "Done"
Timer1.Enabled = False
End If
End Sub
How about clock like count down.. minutes and seconds with colon for separator,.. what is the code for it this format:
[MM:SS]
[60:00]
tnx in advance
azzler04 9 hours ago
@ecos715 This is for new vb, i dont know how it is in VB6
TastyTeo 1 year ago
@TastyTeo thanks!!
ecos715 1 year ago
@ecos715 Double Click the Stop Button and put the following:
Timer1.Enabled = False
Label1.Text = 0
TastyTeo 1 year ago
- SO THANK YOU !
raffy0003 1 year ago
everything its okay but, i need to know how to stop the countdown in 0
ecos715 1 year ago
awesome i want moving labels how do dat :(
ALEG0Man360 1 year ago
Thanks!
ultragaming1993 1 year ago
i would say useless! if i want countdown, Days Hours Mins Secs?? that would be usefull
xxblinddxx 2 years ago
Thanks! This is by far the easiest countdown example that I have read or watched!
notcher19 2 years ago