I sent a question of difficulty in finding specific records from an MsAccess database using Vb.net windows form as a front end.
This is the code am trying to use.
Dim staffrecord As DataRow
dt = DsStaffInfo.Tables(“StaffInfo”)
Dim theId As String
theId = txtFind.Text
staffrecord = dt.Rows.Find(theId)
Will someone please help me out