VB Script Membuat Text Bergerak - Animasi Form VB 6.0 Gratis

VB Script Membuat Text Bergerak - Animasi Form VB 6.0 Gratis - Salam programmer sahabat App Source Code, Pada sharing Script/Source Code kali ini yang berjudul VB Script Membuat Text Bergerak - Animasi Form VB 6.0 Gratis , saya telah menyediakan Source Code lengkap dengan Databasenya. mudah-mudahan isi postingan App Source Code yang saya tulis ini dapat anda pahami. okelah, ini dia Source Code Programnya.

Judul : VB Script Membuat Text Bergerak - Animasi Form VB 6.0 Gratis
Link : VB Script Membuat Text Bergerak - Animasi Form VB 6.0 Gratis

lihat juga


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 : ,

0 Response to "VB Script Membuat Text Bergerak - Animasi Form VB 6.0 Gratis "

Posting Komentar