All pastes #2104847 Raw Edit

Visual Basic Clock

public text v1 · immutable
#2104847 ·published 2012-01-21 22:21 UTC
rendered paste body
Public Class Form1

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Label1.Text = Now() 
    End Sub

    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
        Label1.Text = Now
    End Sub
End Class