Is there a control that I can use to place on a form that will show some kind of clockface or watchface, preferably with the date on it too....?
Printable View
Is there a control that I can use to place on a form that will show some kind of clockface or watchface, preferably with the date on it too....?
For date add a Lable to your form Label1
for the clock go here:Code:Private Sub Form_Load()
Label1.Caption = Format(Date, "yyyy/mm/dd")
End Sub
http://forums.vb-world.net/showthrea...threadid=29303