Hi Guys
I'm getting this error when I loop through a record set. I am connecting to a Stored Procedure that performs the search on my database. I can retrieve the first five set of records and then when there is no more data left in the table I get the following error.
Here is my loopThe Rowset was built over a live data feed and cannot be restarted
Can someone please help meCode:Do While objRS.EOF = False Call MsgBox((objRS.Fields(0) & vbNewLine & objRS.Fields(1) & vbNewLine & _ objRS.Fields(2) & vbNewLine & objRS.Fields(3) & vbNewLine & objRS.Fields(4)), vbInformation) objRS.MoveNext Loop objRS.MoveFirst
JK




Reply With Quote