I am trying to implement the Find method against and ado data control using multiple criteria and it doesn't seem to work. Here is what the code looks like
frmEditRuns.Adodc1.Recordset.Find ("RunNumber = " & varRun & " AND StationNumber = " & varLine)
This code works fine when I specify a single criteria, but when I try to combine criteria with the AND, no results
Is it possible to do this with the ado Find ?
frmEditRuns.Adodc1.Recordset.Find ("RunNumber = " & varRun & " AND StationNumber = " & varLine)
This code works fine when I specify a single criteria, but when I try to combine criteria with the AND, no results
Is it possible to do this with the ado Find ?