Not sure if I can explai this issue. I have a application that when the users first set it up will have a number of empty tables. I'm using ADO recordsets to access this tabl, but I keep getting errors such as "object varible or with block not set" Thsi occurs when I go to run the following code:

With Adodc2.Recordset
If Not (.BOF And .EOF) 'Then ...error occurs here the recordeset is based upon a empty table
mvBookMark = .Bookmark
End If

.AddNew
mbAddNewFlag = True
End With
If it an issue with the empty table or should I be looking at something else?

Gerard