Visual Basic .NET: Perbedaan antara revisi
Konten dihapus Konten ditambahkan
+contoh program |
k Robot: Cosmetic changes |
||
Baris 40:
<source lang="vbnet">
Dim
m_item = double.Parse(textBox1.Text)
m_price = double.Parse(textBox2.Text)
Baris 54:
<source lang="vbnet">
Dim total As Integer
total = 0
If (CheckBox1.Checked = True) Then 'boleh memilih semua checkbox
total += 3
|