Judul : VB Script Membuat Text Bergerak - Animasi Form VB 6.0 Gratis
Link : VB Script Membuat Text Bergerak - Animasi Form VB 6.0 Gratis
VB Script Membuat Text Bergerak - Animasi Form VB 6.0 Gratis
Artikel Animasi Form VB 6.0, Pada Tutorial Pintar VB kali ini, kami akan memberikan Tutorial tentang Animasi Form pada VB 6.0 yaitu membuat Text bergerak pada Label. untuk membuatnya sangat mudah, buatlah form seperti diatas.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
Demikianlah Artikel VB Script Membuat Text Bergerak - Animasi Form VB 6.0 Gratis
Sekian Source Code VB Script Membuat Text Bergerak - Animasi Form VB 6.0 Gratis , mudah-mudahan bisa memberi manfaat untuk anda semua. baiklah, sekian postingan App Source Code kali ini.
Anda sedang membaca artikel VB Script Membuat Text Bergerak - Animasi Form VB 6.0 Gratis dan artikel ini url permalinknya adalah https://app-sourcecode.blogspot.com/2013/10/vb-script-membuat-text-bergerak-animasi.html Semoga artikel ini bisa bermanfaat.
Tag : Animasi Form VB 6.0,
0 Response to "VB Script Membuat Text Bergerak - Animasi Form VB 6.0 Gratis "
Posting Komentar