TUGAS 4
SISTEM MANAJEMEN
BASIS DATA
"Aplikasi Swalayan"
Disusun
oleh:
1. Yogy
Pratama (121051037)
2. Gustian
Rohendi (121051063)
3. Nur
Rohmah (121051110)
4. Ermawati (121051111)
INSTITUT SAINS & TEKNOLOGI
Private Sub Command1_Click()
Dim user_name As String
Dim password As String
Call BukaDB
RSuser.Open
"Select * from t_user where user_name ='" & Text1 & "'
and password='" & Text2 & "'", koneksi
If
RSuser.EOF Then
MsgBox
"Password Salah, Coba Lagi!"
Text2 =
""
Text2.SetFocus
Else
Unload
Me
FrBar.Show
End If
End Sub
Private Sub Command2_Click()
Unload Me
End Sub