Buka visual basic 6 nya .. pilih application standard tus buat 1 form
Pada tab components, pilih Microsoft Windows Common Controls 6.0 (SP6)
[You must be registered and logged in to see this image.]Selanjutnya masukkan, 1 buah progress bar dan 1 buah timer, seperti ini
[You must be registered and logged in to see this image.]stelah itu masukan source code di bawah ini di timer
- Code:
-
If ProgressBar1.Value = 100 Then
ProgressBar1.Value = 0
Else
ProgressBar1.Value = Val(ProgressBar1.Value) + Val(1)
End If
Setelah itu, close Form1Code tersebut, dan klik lg pd timer1.
Ganti intervalnya menjadi 100
Kemudian coba compile dengan menekan tombol play.
Jika berhasil tampilannya seperti ini:
[You must be registered and logged in to see this image.]