Does anyone know how to display time on the status bar using vb?
Printable View
Does anyone know how to display time on the status bar using vb?
Put a Timer control on your from and set its interval to 1000 (1 second). In the Timer event, update the panel in your status bar with
Statusbar1.panels(1).Text = Time
You can set the style one of the panels to be sbrTime and it will show the current system time