G
Guest
I have a form which pulls values from a table directly. I want to be able to
add a new row and also edit the values of any fields in an existing row (in a
separate form). The edit function works perfectly:
DoCmd.OpenForm "frm_TRA_AddBase", , , "[anBaseID]=" & Me.Text38.Value,
acFormEdit, , True
the add command, does not:
DoCmd.OpenForm "frm_TRA_AddBase", , , , acFormAdd
Can someone please help me out here, as I am sure someone knows the mistake
I am making? (unless you need more info on the form that adds/edits to the
table)
add a new row and also edit the values of any fields in an existing row (in a
separate form). The edit function works perfectly:
DoCmd.OpenForm "frm_TRA_AddBase", , , "[anBaseID]=" & Me.Text38.Value,
acFormEdit, , True
the add command, does not:
DoCmd.OpenForm "frm_TRA_AddBase", , , , acFormAdd
Can someone please help me out here, as I am sure someone knows the mistake
I am making? (unless you need more info on the form that adds/edits to the
table)