|
-
Dec 11th, 2005, 10:10 PM
#1
Thread Starter
Fanatic Member
ADO Find Method Error
I have populated my access table with all the information, and now I am trying to find a record in relationship to a string however everytime I try to find I get an error:
Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another.
I have tried to move to the first record but still get the same error. The type in the table for this field is of text.
DefaultId = "MS-10003"
It is located in the table, but I am not sure why I am getting the error, any ideas?
VB Code:
adoRs.MoveFirst
adoRs.Find "STATION ID='" & DefaultId & "'", , , 1
-
Dec 11th, 2005, 10:25 PM
#2
Re: ADO Find Method Error
I think you need ()
Find (criteria, SkipRows, searchDirection, start)
-
Dec 11th, 2005, 10:31 PM
#3
Thread Starter
Fanatic Member
Re: ADO Find Method Error
Pretty sure I tried that, but lets give it a shot
-
Dec 11th, 2005, 10:37 PM
#4
Thread Starter
Fanatic Member
Re: ADO Find Method Error
-
Dec 11th, 2005, 10:58 PM
#5
Re: ADO Find Method Error
Which cursor are you using? I think you need a server side cursor to use Find.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|