See also : How to Create Login Form POS Application
Open VB Net 2013 in your computer
Click FILE - New Project
And then show below picture :
Click OK
Design Form1 like below picture :
and then place below code at Form1.vb
Public Class Form1Don't forget to enable Timer1
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Label4.Text = Today
End Sub
Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick
Label3.Text = TimeOfDay
End Sub
End Class
Here for the result :