J
JimP
The following code works on a linked mdb table but doesn't on an ODBC linked
table (SQL Server)
Dim rs AS DAO.Recordset
Set rs = CurrentDB.OpenRecordset("MyTable")
rs.FindFirst "CustomerID = '999'" 'CustomerID is a text
field
table (SQL Server)
Dim rs AS DAO.Recordset
Set rs = CurrentDB.OpenRecordset("MyTable")
rs.FindFirst "CustomerID = '999'" 'CustomerID is a text
field