Click to See Complete Forum and Search --> : How to check it is the first record?


Blue Sky
March 29th, 2001, 08:17 AM
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

Jean-Guy2000
March 29th, 2001, 09:10 AM
rs.MoveFirst does this.

Jean-Guy