please help... i have a vb program which needs to search for employee name inside empmas.mdb, specifically empmas table. the user will input the idnumber on a textbox and from that it will search the name of the employee and display it in a label in my vb program.
all i have is this:
Dim db As Database
Dim rs As Recordset
Dim SQLString As String
Set db = OpenDatabase("C :\empmas.mdb")
all i have is this:
Dim db As Database
Dim rs As Recordset
Dim SQLString As String
Set db = OpenDatabase("C :\empmas.mdb")
Comment