Menghubungkan Data Base dari Microsoft access dengan VB
Program ini digunakan untuk membuat menu pada suatu form dan juga membuat data base dengan menggunakan Microsoft access yang nanti data base tersebut akan di tampilkan dalam form (program VB).
Nama File : Menu dan Data Base
Nama Program : Visual Basic
Input / Deklarasi : label
command button
textbox
Untuk Form1 :
Object | Properties | Value |
Label1 | Caption | Nama |
Label2 | Caption | Telepon |
Label3 | Caption | Alamat |
Text1 | Data Source Data Field | Data1 Nama |
Text2 | Data Source Data Field | Data1 Telepon |
Text3 | Data Source Data Field | Data1 Alamat |
Data1 | Caption Connect Databasename Record Source | Data teman Access Tempat menaruh File Access Table1 |
Command1 | Caption | Next |
Untuk Form2 :
Object | Properties | Value |
Label1 | Caption | Kode Buku |
Label2 | Caption | Judul Buku |
Label3 | Caption | Pengarang |
Label4 | Caption | Penerbit |
Label5 | Caption | Harga |
Text1 | Data Source Data Field | Data1 Kode Buku |
Text2 | Data Source Data Field | Data1 Judul Buku |
Text3 | Data Source Data Field | Data1 Pengarang |
Text4 | Data Source Data Field | Data1 Penerbit |
Text5 | Data Source Data Field | Data1 Harga |
Data1 | Connect Databasename Record Source | Access Tempat menaruh File Access Table2 |
Command1 | Caption | Exit |
LISTING PROGRAM :
Form1
Private Sub Command1_Click()
Form1.Hide
Form2.Show
End Sub
Form2
Private Sub Command1_Click()
End
End Sub
Tampilan Awal :
Tampilan Menu Editor untuk membuat Popup :
Output :
No comments:
Post a Comment