Search results

  1. R

    No Current Record Error

    If you sure there are records you can use: .Move First,, if you are not you can use If rs.RecordCount = 0 Then rs.AddNew Else rs.MoveFirst End If -------------------- because we can't use .MoveFirst while there are no records. Good Luck
Top Bottom