Forward-Only Read of Access Recordset:   Return to List

rs.Open strSQL, CurrentProject.Connection, adOpenForwardOnly
If rs.EOF = False Then
    Do Until rs.EOF = True
        lngCount = lngCount + 1
        ReDim Preserve aryTemp(lngCount)
        strTemp = rs![WhateverField]
        aryTemp(lngCount) = strTemp' Storing field in an array
        rs.MoveNext
    Loop
End If

' ********* NOTE: *******************************
' Does NOT support rs.RecordCount
' ONLY supports rs.MoveNext method
' **********************************************



Note to Webmaster