|
-
June 27th, 2001, 02:24 PM
#1
Display clock in the status bar
Does anyone know how to display time on the status bar using vb?
-
June 27th, 2001, 03:50 PM
#2
Re: Display clock in the status bar
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
-
June 28th, 2001, 06:06 AM
#3
Re: Display clock in the status bar
You can set the style one of the panels to be sbrTime and it will show the current system time
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|