Hi All
Another poser, I would like to read a recorset, however I dont want to start at record one, Basically I want to read the first 20 records, display the first 20 records, and if the user wants to continue , he can click a continue button and it will display the next 20 records and so on, also ther will be a previous buttong to allow him to go back wards by 20 records.
Is this possible
Currently I have
While not rst.EOF
For X = 1 to 20
aStr = rst![Album]
me("Text" & & 20).value = aStr
rst.movenext
If X = 20 then
Exit SUb
End if
Next
Wend
rst.close
So as you can see, extremely basic and does the first 20, but I havent a clue how to continue.
Any help would be very gratefully received
Many thanks
James
Another poser, I would like to read a recorset, however I dont want to start at record one, Basically I want to read the first 20 records, display the first 20 records, and if the user wants to continue , he can click a continue button and it will display the next 20 records and so on, also ther will be a previous buttong to allow him to go back wards by 20 records.
Is this possible
Currently I have
While not rst.EOF
For X = 1 to 20
aStr = rst![Album]
me("Text" & & 20).value = aStr
rst.movenext
If X = 20 then
Exit SUb
End if
Next
Wend
rst.close
So as you can see, extremely basic and does the first 20, but I havent a clue how to continue.
Any help would be very gratefully received
Many thanks
James