Sekilas tentang Visual
Basic.
Apakah Visual Basic itu
hehehe ???????
Tanpa basa-basi
langsung aja sobat,,,,,,,,,kita bahas biar gak jenuh baca artikel nya hehe !!!
Visual Basic adalah
suatu bahasa pemrograman yang berbasis GUI (Graphic User Intervace). Didalamnya
berisi perintah-perintah atau intruksi yang dimengerti oleh computer untuk
untuk melakukan tugas-tugas tertentu.
Microsoft Visual Basic
6.0 menyediakan fasilitas yang memungkinakan kita untuk menyusun sebuah program
aplikasi dengan memasang object-object grafis dalam sebuah form.
Nah sobat yang saya
akan bahas disini adalah bagaimna membuat program checkbox pada visual basic
6.0.
Langsung saja.
Aturlah properties dari
setiap control tersebut seperti pada tabel berikt ini :
Nama Control
|
Properties
|
Nilai Pengaturan
|
Text1
|
Text
|
Tulis
Text dikosongkan
|
Check1
|
Caption
|
Buku
Tulis
|
Check2
|
Caption
|
Pulpen
|
Check3
|
Caption
|
Penghapus
|
Check4
|
Caption
|
Pensil
|
Command
1
|
Caption
|
&Proses
|
Commman
2
|
Caption
|
&Ulang
|
Commman
3
|
Caption
|
&
Keluar
|
Kode
Program
Private
Sub Command1_Click()
If Check1.Value = 1 Then hg_buku = 10000
If Check2.Value = 1 Then hg_pulpen = 8000
If Check3.Value = 1 Then hg_penghapus = 5000
If Check4.Value = 1 Then hg_buku = 2000
Text1.Text = hg_buku + hg_pulpen + hg_penghapus +
hg_pensil
Text1.Text = Format(Text1, "###,###,##")
End Sub
Private
Sub Command2_Click()
Check1.Value = 0
Check2.Value = 0
Check3.Value = 0
Check4.Value = 0
Text1.Text = Clear
End Sub
Private
Sub Command3_Click()
Unload Me
End Sub
Nah bila selesai maka
hasilnya akan seperti gambar diatas,,,,,,hehehe.
Selamat mencoba sobat
!!!!!!!!!!!!!!!
0 comments:
Post a Comment