Hello
I have an application in vb6 that works on MSAccess 2003. And now I have to change connection to SQL Server 2005. I changed connection string to:
conn.Open "Driver={SQL Server}; Server=server; Database=Base; UID=ID; PWD=pwd"
I open recorset like this
Set rs = cnServer.Execute("SELECT * FROM tbl")
and it is OK.
But if I try to find record in recordset using
rs.find "ID = " & textbox.text I got error msg like
"Rowset does not support scrolling backward."
There is problem wit locking, aren't it?
HELP