bentuk Perulangan ada 4, yaitu:
- FOR – NEXT
- DO – LOOP
- DO –WHILE
- DO – UNTIL
Baik lah, Sekarang kita langsung buka Aplikasi Visual Studio 2012. Buat lah From seperti ini .
- File -> New Project -> Windows Form Aplication -> langsung tampil Form1vb.
- dan langsung buatlah Form Seperti berikut :
Buatlah!. Pada Toolbox pilih dan drag ke Form yang tersedia :
- ListBox ( Silahkan atur pada jendela Properties Font dan besarnya huruf sesuka Anda ).
- GrupBox ( Pada Properties => text: ganti dengan nama " Perkalian " )
- Radiobutton ( Pada Properties => text: ganti dengan nama " Single " )
- Radiobutton 2 ( Pada Properties +> text: ganti dengan nama " Multiple " )
- Texbox1
- Label1 ( Pada Properties => text: ganti dengan " s/d " )
- Textbox2 lagi
- Groupbox ( Pada Properties => text: ganti dengan " Pengali " )
- TextBox3
- Button ( Pada Properties => text: ganti dengan " PROSES " )
- If RadioButton2.Checked = True Then
- Dim A, B, C As Integer
- ListBox1.Items.Clear()
- For A = TextBox1.Text To TextBox2.Text Step 1
- For B = 1 To TextBox3.Text Step 1
- C = A * B
- If A = 1 Then
- ListBox1.Items.Add(A & "x" & B & "=" & C)
- ElseIf A = 2 Then
- ListBox1.Items.Add(A & "x" & B & "=" & C)
- Else
- ListBox1.Items.Add(A & "x" & B & "=" & C)
- End If
- Next
- ListBox1.Items.Add("--------------")
- Next
- ElseIf RadioButton1.Checked = True Then
- Dim A, B, C As Integer
- ListBox1.Items.Clear()
- For A = 1 To TextBox3.Text Step 1
- For B = 1 To TextBox3.Text Step 1
- C = A * B
- If A = 1 Then
- ListBox1.Items.Add(A & "x" & B & "=" & C)
- ElseIf A = 2 Then
- ListBox1.Items.Add(A & "x" & B & "=" & C)
- Else
- ListBox1.Items.Add(A & "x" & B & "=" & C)
- End If
- Next
- ListBox1.Items.Add("--------------")
- Next
- End If
2. Sekarang masukan Script Berikut ini dengan menekan Tombol Button " Reset "
Copykan kode berikut antara: privat sub dan End Sub .
- ListBox1.Items.Clear()
- TextBox1.Clear()
- TextBox2.Clear()
- TextBox3.Clear()
- RadioButton1.Checked = False
- RadioButton2.Checked = False
-----------------------------------------------------------------------------------------------------------------------
Nah silahkan tekan tombol F5 ( untuk melakukan Proses Debug ),
jika :
jika :
- Tombol single kita pilih
- TextBox3 atau Pengali = 3
- Tekan Tombol " PROSES "
Jika anda pilih Tombol Multiple ( textBox1=2) s/d (textBoxt2=4) dan Pengali ( textbox3=3)
Maka inilah tampilanya :
Jika anda pilih Tombol Reset. Maka inilah tampilanya :
Maka inilah tampilanya :
SELESAI
nitip link gan
BalasHapushttp://air-team.pe.hu/
http://muhammad-4lief.blogspot.co.id/