I'm using the find method of a recordset but am getting the error "Rowset does not support scrolling backwards". I don't understand why I'm getting this error message when my code looks like this: (Note: the default direction to the find method is adSearchForward)
Customers.MoveFirst
If Not Customers.BOF And Not Customers.EOF Then
'******It errors on the next line***********
Customers.Find "CustomerID = 'ALFKI'"
gs_CustomerID = IIf(IsNull(Customers("CustomerID"
), 0, Customers!CustomerID)
gs_CompanyName = IIf(IsNull(Customers("CompanyName"
), 0, Customers!CompanyName)
gs_ContactName = IIf(IsNull(Customers("ContactName"
), 0, Customers!ContactName)
End if
Any help would be appreciated...
tschock
Customers.MoveFirst
If Not Customers.BOF And Not Customers.EOF Then
'******It errors on the next line***********
Customers.Find "CustomerID = 'ALFKI'"
gs_CustomerID = IIf(IsNull(Customers("CustomerID"
gs_CompanyName = IIf(IsNull(Customers("CompanyName"
gs_ContactName = IIf(IsNull(Customers("ContactName"
End if
Any help would be appreciated...
tschock