Tick Event
Applies To
Timer
Description
Occurs when a Timer control reaches its Interval value.
Usage
Form_Control_Tick (Sender$ As String)
- Sender$
- Name of a control that sent the event.
See Also
Timer, Interval, Enabled
Example
Function frmMain_Timer1_Tick(Sender$ As String)
GSet frmMain.lblDateTime.Text, Date$ + " " + Time$
Fend