I am trying to write code that will deal with an item entered in a combo box that is not in the table. I have copied some code to do this but I get the new name into the new form but unless I make some other change to the form it does not add it to the record set. If I make a small alteration it saves it but I cannot work out how to requery the underlying table.
The code in the table that calls the not in list event is
Private Sub VendorID_NotInList(NewData As String, Response As Integer)
Dim strVendor As String
Dim intReturn As Integer
strVendor = NewData
message = “This vendor ” & strVendor & ” is not in the list do you want to add it”
intReturn = MsgBox(message, vbQuestion + vbYesNo, “New Vendor”)
If intReturn = vbYes Then
DoCmd.OpenForm FormName:=”frmVendor”, datamode:=acAdd, windowmode:=acDialog, OpenArgs:=strVendor
End If
If IsNull(DLookup(“VendorID”, “tblVendor”, “[Name]” = “”” & strVendor & “””)) Then
Response = acDataErrContinue
Else
Response = acDataErrAdded
End If
End Sub
The code called as the form is opened is
Private Sub Form_Load()
Dim strVendor As String
If IsNull(Me.OpenArgs) Then Exit Sub
strVendor = Me.OpenArgs
Me![Name].DefaultValue = “””” & strVendor & “”””
End Sub
The Vendor table has three fields VendorID, Name and Date entered.
I would like to be able to transfer the new name, create a record, then requery the underlying table so the name would now be accepted, can anyone help me please.
Mitch