G
Guest
Hi all
I have the following code to deal with adding new values to a combo box:
Msg = "Do you want to add a new Currency?"
If MsgBox(Msg, vbQuestion + vbYesNo, "New Currency") = vbyes Then
DoCmd.OpenForm "frm Currency"
DoCmd.GoToRecord , , acNewRec
End If
I have chosen to open a popup form to create the new record as the user
needs to enter details in two fields (one being a description eg British
Pounds).
The form opens correctly but Access still displays the Not in list standard
error message - is there a way to stop this?
Thanks in advance for any help.
Sue
I have the following code to deal with adding new values to a combo box:
Msg = "Do you want to add a new Currency?"
If MsgBox(Msg, vbQuestion + vbYesNo, "New Currency") = vbyes Then
DoCmd.OpenForm "frm Currency"
DoCmd.GoToRecord , , acNewRec
End If
I have chosen to open a popup form to create the new record as the user
needs to enter details in two fields (one being a description eg British
Pounds).
The form opens correctly but Access still displays the Not in list standard
error message - is there a way to stop this?
Thanks in advance for any help.
Sue