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 Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Fetching backwards

Status
Not open for further replies.

savok

Technical User
Joined
Jan 11, 2001
Messages
303
Location
AT
I am trying to speed up the way my grid loads and when using the following code i get an error saying "the rowset does not support fetching backwards" is there anything i can do about it? I get the error on the .movelast

records.movelast
intRecCount=records.RecordCount
records.movefirst

for intCounter=1 to intRecCount
combo1.additem records![Full Name]
records.movenext
next intCounter
 
'records' is instantiated improperly for your use. There are several differnt attributse which are used to control the attributes of recordsets. You need to look at the line

set records = "some stuff here needs to be reviewed/changed"


MichaelRed
redmsp@erols.com

There is never time to do it right but there is always time to do it over
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top