3) Write a Vb.Net program to move the Text Dr D Y Patil College continuously from Left to Right
Public Class Form1
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
If Label1.Left > 400 Then
Label1.Left = 10
End If
Label1.Left = Label1.Left + 15
End Sub
End Class