Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations MikeeOK on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Scrolling RecordSets 1

Status
Not open for further replies.

Rougy

Programmer
Oct 15, 2001
249
US
Hi,

I've noticed that the recordset object has a "moveprevious" method, but every time I've tried to use it, it wouldn't work.

Is there a setting I'm not using right?

There are ways around it, but it would be really handy to scroll back one recordset in some cases, especially regarding data associated with dates.

Thanks.

-----
The death of dogma is the birth of reason.
 
You may be opening your recordset with a forward only cursor. Look into the Dynamic and Static cursor types and see if either of those might help out.

Good Luck
--------------
As a circle of light increases so does the circumference of darkness around it. - Albert Einstein
 
rs.Open CMD1, cn, adOpenStatic

"adOpenStatic" was the magic word.

Thank you!

-----
The death of dogma is the birth of reason.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top