View Full Version : current record and filters


Danielf
05-29-2000, 05:28 AM
In a continuous form , to go to the current
record( for example editing this record in another form)
you have to write :

DoCmd.GoToRecord acDataForm, stDocName, acGoTo, Me.CurrentRecord;

This works fine BUT

I have applied a filter in my form and then
when trying to go to a new record,it goes to a wrong record.

For example :if in the filtered form, the record selector shows the 4th record, it goes
to the 4th record of the form without filter.
Me.currentrecord and Me![fields] don't show
the same record.

Thanks for help

Daniel

[This message has been edited by Danielf (edited 05-30-2000).]