How can I display a timer counting down to 00h:00m:00s?

T

Trint Smith

I need to display a timer ticking down.
Example:
11h:52m:39s to 00h:00m:00s
How can I do this?
Thanks,
Trint

.Net programmer
(e-mail address removed)
 
T

Tom Shelton

I need to display a timer ticking down.
Example:
11h:52m:39s to 00h:00m:00s
How can I do this?
Thanks,
Trint

.Net programmer
(e-mail address removed)

Public Class Form1
Inherits System.Windows.Forms.Form

#Region " Windows Form Designer generated code "

Public Sub New()
MyBase.New()

'This call is required by the Windows Form Designer.
InitializeComponent()

'Add any initialization after the InitializeComponent() call

End Sub

'Form overrides dispose to clean up the component list.
Protected Overloads Overrides Sub Dispose(ByVal disposing As
Boolean)
If disposing Then
If Not (components Is Nothing) Then
components.Dispose()
End If
End If
MyBase.Dispose(disposing)
End Sub

'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer

'NOTE: The following procedure is required by the Windows Form
Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
Friend WithEvents Label1 As System.Windows.Forms.Label
Friend WithEvents Timer1 As System.Windows.Forms.Timer
<System.Diagnostics.DebuggerStepThrough()> Private Sub
InitializeComponent()
Me.components = New System.ComponentModel.Container
Me.Label1 = New System.Windows.Forms.Label
Me.Timer1 = New System.Windows.Forms.Timer(Me.components)
Me.SuspendLayout()
'
'Label1
'
Me.Label1.Location = New System.Drawing.Point(4, 4)
Me.Label1.Name = "Label1"
Me.Label1.TabIndex = 0
Me.Label1.Text = "Label1"
'
'Timer1
'
Me.Timer1.Enabled = True
Me.Timer1.Interval = 1000
'
'Form1
'
Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
Me.ClientSize = New System.Drawing.Size(108, 29)
Me.Controls.Add(Me.Label1)
Me.Name = "Form1"
Me.Text = "Form1"
Me.ResumeLayout(False)

End Sub

#End Region

Private span As New TimeSpan(11, 52, 39)

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
Label1.Text = span.ToString()
End Sub

Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Timer1.Tick
span = span.Subtract(New TimeSpan(0, 0, 1))
Label1.Text = span.ToString()
If span.Equals(New TimeSpan(0, 0, 0)) Then
Timer1.Enabled = False
End If
End Sub
End Class

HTH
 
K

Ken Tucker [MVP]

Hi,

You can try something like this. I would use the timer in the
componet tab with an interval of 1000.

http://msdn.microsoft.com/msdnmag/issues/04/02/TimersinNET/default.aspx

Private Sub Timer1_Elapsed(ByVal sender As System.Object, ByVal e As
System.Timers.ElapsedEventArgs) Handles Timer1.Elapsed

Static ts As New TimeSpan(0, 0, 10) ' hours, minutes, seconds

Dim tsZero As New TimeSpan(0, 0, 0)

ts = ts.Subtract(New TimeSpan(0, 0, 1))

If ts.Equals(tsZero) Then

Timer1.Enabled = False

MessageBox.Show("Done")

End If

Me.Text = ts.ToString

End Sub

Ken
 
A

Armin Zingler

Trint Smith said:
I need to display a timer ticking down.
Example:
11h:52m:39s to 00h:00m:00s
How can I do this?

Drop a timer (system.windows.forms.timer) and a lable from the toolbox on
the form. Add this Code:

Private m_EndDateTime As Date

'to start the timer:
m_EndDateTime = Date.Now.AddHours(0.01)
Timer1.Start()

'Tick handler:
Private Sub Timer1_Tick( _
ByVal sender As System.Object, _
ByVal e As System.EventArgs) _
Handles Timer1.Tick

Dim ts As TimeSpan

ts = m_EndDateTime.Subtract(Date.Now)
If ts.Ticks <= 0 Then
Label1.Text = "your time is up!"
Timer1.Stop()
Else
Label1.Text = String.Format( _
"{0:00}h:{1:00}m:{2:00}s", _
ts.Hours, ts.Minutes, _
CInt(Math.Ceiling(ts.Seconds + ts.Milliseconds / 1000)) _
)
End If

End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top