capwrmt Posted June 17, 2003 Posted June 17, 2003 How would I create a clock component in a vb.net application, ie a running clock that will be displayed in the status bar or a docked window? any suggestions would be greatly appreciated. thanks in advance. Quote
capwrmt Posted June 17, 2003 Author Posted June 17, 2003 I know that there was a way of placing the system time in the status bar in vb6, but i'm not sure how to implement it in .net Quote
Winston Posted June 17, 2003 Posted June 17, 2003 stick a timer on the form and then say the name of the status bar is sts Timer_Tick event sts.panels.item(the index of the panel u want the text to be displayed).text = system.datetime.now Quote
capwrmt Posted June 17, 2003 Author Posted June 17, 2003 Thanks Winston! That was so easy to add that it's unbelievable I missed it. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.