Just the full form of .BOF and .EOF

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Could any one can explain me the following, which I am unable to understand :

If rs.BOF = False Then
rs.MoveFirst

**What does .BOF stands for

If rs.EOF = False Then
rs.MoveFirst


Thanks & best regards.


Irshad.
 
..BOF Beginning of File
..EOF End of File

Typically, if you're looping through a recordset you would use a
While...wend or other type of loop as in

While rs.EOF = false
{code}
rs.EOF
Wend
 
Back
Top