Run-time Error '40036'

  • Thread starter Thread starter Dave
  • Start date Start date
D

Dave

In Access 2002 I am trying to go to the first record in
the form but keep getting Run-time Error '40036' -
Method 'Item' of object 'Forms' failed. I am using the
following code....

Forms![OT:CLASS 401].RecordsetClone.MoveFirst

I have tried other things but can't seem to get anything
to work. Anyone have any idea what is going on or how I
can get this to work right.

Thanks Dave
 
If you want your form to display the first record, use:

DoCmd.GoToRecord , , acFirst
 
Back
Top