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.movelast
intRecCount=records.RecordCount
records.movefirst
for intCounter=1 to intRecCount
combo1.additem records![Full Name]
records.movenext
next intCounter