Form diatas terbuat dari :
Label1
Label2
Timer1
Timer2
Pada form buatlah text sesuka anda, kemudian copy coding dibawah ini :
Dim GerakKeKiri As Integer
Dim Teks1 As String
Dim GerakKeKanan As Integer
Dim Teks2 As String
Private Sub Form_Load()
Teks1 = Label1
Teks2 = Label2
End Sub
Private Sub Timer1_Timer()
Label1 = GerakKeKiri
Teks1 = Right(Teks1, Len(Teks1) - 1) & Left(Teks1, 1)
Label1 = Teks1
End Sub
Private Sub Timer2_Timer()
Label2 = GerakKeKanan
Teks2 = Right(Teks2, 1) & Left(Teks2, Len(Teks2) - 1)
Label2 = Teks2
End Sub
Note : Jangan lupa, Interval pada Timer1 dan Timer2 ubah menjadi 100.
Salam
Pintar VB | Tutorial Lengkap VB 6.0 dan VB .Net
0 Response to "Membuat Text Bergerak - Animasi Form VB 6.0"