How to check the cursor is now pointing to the first record?
Other than using :
rs.MovePrevious
if rs.bof then
'do something
end if
I would like to know is there any alternative methods
Printable View
How to check the cursor is now pointing to the first record?
Other than using :
rs.MovePrevious
if rs.bof then
'do something
end if
I would like to know is there any alternative methods
rs.MoveFirst does this.
Jean-Guy