record set find failing

groengoen

Registered User.
Local time
Today, 23:33
Joined
Oct 22, 2005
Messages
141
I have used the following code to do a find on a recordset and it is giving the error message "rowset does not support scrolling backwards". Does anybody know why this is?

Private Sub Form_Current()
Dim stID As String
Dim strSQL As String
Dim rst As ADODB.Recordset

stID = Forms!PolicyForID.ID1.Value
strSQL = "[ID1] = " & Chr(34) & stID & Chr(34)
Set rst = New ADODB.Recordset
rst.Open "select * from LIFE1209", CurrentProject.Connection


' message "rowset does not support scrolling backwards" is displayed on next line
rst.Find strSQL
If Not rst.EOF Then
[FormNo] = rst![FormNo]
[Name2] = rst![Name2]
[Company] = rst![Company]
[Policy_No] = rst![Policy_No]
[Start_Date] = rst![Start_Date]
[ID1] = rst![ID1]
[ID2] = rst![ID2]
Else
DoCmd.Requery
End If
 
Maybe you should movefirst before the find ???
 
a put in the MoveFirst and still got the same error. There must be something fundamental wrong with my logic somewhere.

Thanks
 
I thought you needed an adSearchForward or adSearchBackward with a 'find'...
 
I can't see adSearch anywhere on my version of VBA. I have Access 2002.
 
Find Method
Searches a Recordset for the row that satisfies the specified criteria. Optionally, the direction of the search, starting row, and offset from the starting row may be specified. If the criteria is met, the current row position is set on the found record; otherwise, the position is set to the end (or start) of the Recordset.

Syntax
Find (Criteria, SkipRows, SearchDirection, Start)
Parameters
Criteria
A String value that contains a statement specifying the column name, comparison operator, and value to use in the search.
SkipRows
Optional. A Long value, whose default value is zero, that specifies the row offset from the current row or Start bookmark to begin the search. By default, the search will start on the current row.
SearchDirection
Optional. A SearchDirectionEnum value that specifies whether the search should begin on the current row or the next available row in the direction of the search. An unsuccessful search stops at the end of the Recordset if the value is adSearchForward. An unsuccessful search stops at the start of the Recordset if the value is adSearchBackward.
Start
Optional. A Variant bookmark that functions as the starting position for the search.
Remarks
Only a single-column name may be specified in criteria. This method does not support multi-column searches.

The comparison operator in Criteria may be ">" (greater than), "<" (less than), "=" (equal), ">=" (greater than or equal), "<=" (less than or equal), "<>" (not equal), or "like" (pattern matching).

The value in Criteria may be a string, floating-point number, or date. String values are delimited with single quotes or "#" (number sign) marks (for example, "state = 'WA'" or "state = #WA#"). Date values are delimited with "#" (number sign) marks (for example, "start_date > #7/22/97#") and can contain hours, minutes and seconds to indicate time stamps but should not contain milliseconds or errors will occur.

If the comparison operator is "like", the string value may contain an asterisk (*) to find one or more occurrences of any character or substring. For example, "state like 'M*'" matches Maine and Massachusetts. You can also use leading and trailing asterisks to find a substring contained within the values. For example, "state like '*as*'" matches Alaska, Arkansas, and Massachusetts.

Asterisks can be used only at the end of a criteria string, or together at both the beginning and end of a criteria string, as shown above. You cannot use the asterisk as a leading wildcard ('*str'), or embedded wildcard ('s*r'). This will cause an error.

Note An error will occur if a current row position is not set before calling Find. Any method that sets row position, such as MoveFirst, should be called before calling Find.
Note If you call the Find method on a recordset, and the current position in the recordset is at the last record or end of file (EOF), you will not find anything. You need to call the MoveFirst method to set the current position/cursor to the beginning of the recordset.
See Also
Visual Basic Example

Index Property | Optimize Property—Dynamic (ADO) | Seek Method

Applies To: Recordset Object
© 1998-2003 Microsoft Corporation. All rights reserved.
.
.
.

???
 
I got it to work fine! Thanks for the abundance of info.
 

Users who are viewing this thread

Back
Top Bottom