L
Lloyd
I have a subform on a tab.
The subform is NOT set for dataentry.
When the user selects the tab with this form on it, I want it to display a
new form so the user doesnt accidently type over an existing entry, but I
want the user to be able to page back through the previous entries in case
they need to change one of them.
I have tried various code (listed below) in the on current event of the sub
form
DoCmd.RunCommand acCmdRecordsGoToLast
Me.Form.Recordset.MoveLast
DoCmd.GoToRecord , , acNewRec
Each of these in one way or the other will take me to a new record, but when
I select the previous button on my form, it says there is no previous
entries. Its like its treating the form like a data entry form.
Maybe I'm approaching this wrong, but I want to start on a new page, but
still be able to page back through the previous entries on the form, what am
I doing wrong?
The subform is NOT set for dataentry.
When the user selects the tab with this form on it, I want it to display a
new form so the user doesnt accidently type over an existing entry, but I
want the user to be able to page back through the previous entries in case
they need to change one of them.
I have tried various code (listed below) in the on current event of the sub
form
DoCmd.RunCommand acCmdRecordsGoToLast
Me.Form.Recordset.MoveLast
DoCmd.GoToRecord , , acNewRec
Each of these in one way or the other will take me to a new record, but when
I select the previous button on my form, it says there is no previous
entries. Its like its treating the form like a data entry form.
Maybe I'm approaching this wrong, but I want to start on a new page, but
still be able to page back through the previous entries on the form, what am
I doing wrong?