buat from seperti berikut !!
lalu copas code dbawah ini :
[color=green]
Option Explicit
Dim nama As String ' tulisan default pada label1
Dim iTimer1 As Integer ' speed atau interval awal timer1
Dim status1 As Boolean
Dim nama2 As String ' tulisan default pada label2
Dim iTimer2 As Integer ' speed atau interval awal timer2
Dim status2 As Boolean
Private Sub Command1_Click()
If Timer1.Interval < 2000 Then Timer1.Interval = Timer1.Interval + 100
End Sub
Private Sub Command2_Click()
If Timer1.Interval > 100 Then Timer1.Interval = Timer1.Interval - 100
End Sub
Private Sub Command3_Click()
Call Aktifkan(Timer1, Command3, Command1, Command2, Command4)
End Sub
Private Sub Command4_Click()
Label3.Caption = "Speed: 0 ms."
Timer1.Interval = iTimer1
Call Aktifkan(Timer1, Command3, Command1, Command2, Command4, True)
status1 = False
Label1.Caption = nama
End Sub
Private Sub Command5_Click()
If Timer2.Interval < 2000 Then Timer2.Interval = Timer2.Interval + 100
End Sub
Private Sub Command6_Click()
If Timer2.Interval > 100 Then Timer2.Interval = Timer2.Interval - 100
End Sub
Private Sub Command7_Click()
Call Aktifkan(Timer2, Command7, Command5, Command6, Command8)
End Sub
Private Sub Command8_Click()
Label4.Caption = "Speed: 0 ms."
Timer2.Interval = iTimer2
Call Aktifkan(Timer2, Command7, Command5, Command6, Command8, True)
status2 = False
Label2.Caption = nama2
End Sub
Private Sub Form_Load()
Form1.Caption = "Animasi Teks - by Galih Hermawan"
' Setting untuk keperluan label1 pada tulisan Galih Hermawan
nama = "SATRIA__"
iTimer1 = 1000
Label1.Caption = nama
Label1.FontSize = 36
Label1.ForeColor = vbBlue
Label1.Alignment = 2 ' rata tengah (center)
Label3.Caption = "Speed: " & Timer1.Interval & " ms."
Command1.Caption = "- Perlambat"
Command1.Enabled = False
Command2.Caption = "+ Percepat"
Command2.Enabled = False
Command3.Caption = "Start"
Command4.Caption = "Stop && Reset"
Command4.Enabled = False
'status1 = False
Command4.Value = True
' Setting untuk keperluan label1 pada tulisan Galih Hermawan
nama2 = "IKHSAN SATRIADI"
iTimer2 = 1000
Label2.Caption = nama2
Label2.FontSize = 30
Label2.FontName = "Courier"
Label2.ForeColor = RGB(150, 40, 10)
Label2.Alignment = 2 ' rata tengah (center)
Label4.Caption = "Speed: " & Timer2.Interval & " ms."