Recent Articles
- Drag Drop FROM VB.net TO Windows Explorer, Started by ManzZup in Visual Basic [VB]
- Simple Calculator in Visual Basic 6, Started by shabbir in Visual Basic [VB]
- Handling the large numeric values while exporting to excel., Started by sameer_havakajoka in Visual Basic [VB]
- Printing Text Directly To Default Printer, Started by naimish in Visual Basic [VB]
- Visual Baisc RPG attack combat system script Tutorial, Started by XXxxImmortalxxXX in Visual Basic [VB]
Similar Articles
- TextBox Control in C#, Started by Sanskruti in C#
Example
One of the best ways to understand how the Timer control works is with an example. Follow these steps:
1. Add a Timer control (which is available under the Components section) to your form and call it Timer1.
2. Set its Interval property to 1000 and its Enabled property to True.
3. Add a Label control to your form, call it lblDateTime, and set its Text property to "".
4. Add the following code:
Code: VB
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs)
Handles Timer1.Tick
lblDateTime.Text = Now.ToLongTimeString.ToString()
End Sub
Explanation
The Timer1_Tick event is fired once the time specified in the Interval property passes. Since the code I execute on this event simply updates the lblDateTime's Text property with the current Date/Time value, the Date/Time displayed on the form is updated every 1,000 milliseconds (as specified in the Timer1's Interval property).











Yet to provide details about himself
Linear Mode

