Click to See Complete Forum and Search --> : Display clock in the status bar


qiaojun
June 27th, 2001, 02:24 PM
Does anyone know how to display time on the status bar using vb?

Ghost308
June 27th, 2001, 03:50 PM
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

TH1
June 28th, 2001, 06:06 AM
You can set the style one of the panels to be sbrTime and it will show the current system time