Halo Sobat Blogger ! ^_^
apa kabar? baik kan? pasti dong ..
pada Postingan kali ini , saya akan berbagi Tutorial Cara Membuat Form Login di Visual Basic 6
Oke Langsung saja ..
[-] Siapkan Dulu Visual Basic 6
[-] Ketekunan
1. Buka Visual Basic , Pilih Standard EXE..
fox-legends.blogspot.com |
fox-legends.blogspot.com |
3. Properties :
Form 1 [] Caption : Login Form | Border Style : 1-Fixed Single
Label 1 [] Caption : Login
Label 2 [] Caption : Username
Label 3 [] Caption : Password
Text Box 1 [] Text : Kosongkan
Text Box 2 [] Text : Kosongkan | Password Char : *
Command Button 1 [] Caption : Login
Command Button 2 [] Caption : EXIT
4. Klik Kanan Form , View Code , Lalu Hapus Code yang ada , Copas Code :
Private Sub Command1_Click()
If Text1.Text = "FoxLegend" And Text2.Text = "Legends" Then
MsgBox ("Login Sukses !")
Form2.Show
Form1.Hide
Else MsgBox ("Wrong Password!!")
End If
Text1.Text = ""
Text2.Text = ""
End Sub
If Text1.Text = "FoxLegend" And Text2.Text = "Legends" Then
MsgBox ("Login Sukses !")
Form2.Show
Form1.Hide
Else MsgBox ("Wrong Password!!")
End If
Text1.Text = ""
Text2.Text = ""
End Sub
Ganti Tulisan Warna Hijau Dengan Kata" Anda Sendiri
Tambahan* Apabila anda ingin menambahkan Message Box , Tambahkan Code : MsgBox ("Kata Anda") Dan Tambahkan Form 2 , Entah itu Aplikasi apa , Caranya :
fox-legends.blogspot.com |
6 . Klik File => Make Project.exe => Taruh Di mana saja , Sesuai Selera , Dan Jalankan ^_^
Apabila ada Error pada Code di atas / Kurang Mengerti Di Perbolekan Komentar !
[Fast Respon]
Apabila Anda Berkomentar Dengan Menggunakan Anonymous , Saya Tidak Akan Merespon !
Arigato Gonzaimazu ^_^
Kok kode menthod tidak di temukan Bro ?
ReplyDeleteYg private sub Command 1
Bisa kasih Screen shot nya?
Delete