30 September 2015

Cara membuat Program Property Test dengan Visual Basic 6.0

Kali ini saya akan membagikan Cara Membuat Program Property Test dengan Visual Basic 6.0

Download Program Property Test Visual Basic 6.0

1. Buka Program Visual Basic 6.0



2. Desain Form seperti ini

 

3. Ubah Property
  
Form1-Caption-Property Test

Command1-Caption-OK
Command2-Caption-Selesai
Frame1-Caption-Pilihan :
Option1-Caption-Biru
Option2-Caption-Merah
Check1-Caption-Tebal
Check2-Caption-Miring
Label1-Caption-Tuliskan Nama Anda :
Text1-Text-<Kosong>
Text2-Text-<Kosong>

4. Copy code berikut lalu klik View Code dan pastekan

Private Sub Check1_Click()
    Label2.FontBold = Check1.Value
End Sub

Private Sub Check2_Click()
    Label2.FontItalic = Check2.Value
End Sub

Private Sub Command1_Click()
    Label2.Caption = Text1.Text
End Sub

Private Sub Command2_Click()
    End
End Sub

Private Sub Option1_Click()
    Label2.ForeColor = vbBlue
End Sub

Private Sub Option2_Click()
    Label2.ForeColor = vbRed
End Sub

 


5. Lalu jalankan dengan menekan F5, maka tampilannya akan seperti ini



Download Program Property Test Visual Basic 6.0
Selamat Mencoba...!!!

1 comment:

Ayu Diah S said...

Thank you. Its so helpful :)