Aplikasi Perulangan Do While – Loop dengan Visual Basic 2008
Baca Juga
Aplikasi Perulangan Do While – Loop dengan Visual Basic 2008 - Pada tutorial ini saya akan memberikan contoh perulangan Do While - Loop, hasil perulangan akan di tampilkan pada ListBox. Berikut langkah - langkah membuat aplikasi perulangan dengan Do While - Loop:
1. Buat lah project baru Windows Form Application
No | Object | Property | Nilai |
1 | Form | Text | Perulangan Do While – Loop |
2 | ListBox1 | Name | LboxHasil |
3 | Button1 | Name Text | BtnProses Proses |
4. Masukkan kode program berikut pada tombol Proses dengan Event Click
Private Sub BtnProses_Click(ByVal sender AsSystem.Object, ByVal e AsSystem.EventArgs) Handles BtnProses.Click
Dim i As Integer
i = 1
LboxHasil.Items.Clear()
Do While i <= 10
LboxHasil.Items.Add(i)
i += 1
Loop
End Sub
5. Jalankan program dengan menekan tombol pada keyboard F5
6. Hasil program :
0 Response to "Aplikasi Perulangan Do While – Loop dengan Visual Basic 2008"
Post a Comment