A family of Microsoft relational database management systems designed for ease of use.
This form has all the organization information and a subform with all the event information.
That's where you've gone wrong. The dialogue form should be bound to the Event table and include controls bound to all columns in the table, so that you can insert the full data for the new row. It should be in single form view and not have a subform.
In the subform in the original form which returns only the partial data I would use a command button rather than a combo box in this situation. A combo box has no real advantage in this context as you have to type in the new event name somewhere. Place the command button in the subform's header or footer. Its Click event procedure's code would be:
' open events form in dialogue mode at a new record
DoCmd.OpenForm "frmEvents", _
DataMode:=acFormAdd, _
WindowMode:=acDialog, _
OpenArgs:=Me.Parent.OrganisationName
' requery subform to include new record
Me.Requery
Opening the frmEvents form in dialogue mode causes code execution to pause until frmEvents is closed, so the Requery method will not be called until code execution resumes after the new record has been inserted into the table
In the frmEvents form's Open event procedure assign the value passed to it as its OpenArgs property to the DefaultValue property of the OrganisationName control, bound to the OrganisationName foreign key column, with:
If Not IsNull(Me.OpenArgs) Then
Me.OrganisationName.DefaultValue = """" & Me.OpenArgs & """"
End If
Note that the DefaultValue property is always a string expression regardless of the data type of the column in question, so the value is wrapped in literal quotes characters as above.
While the use of OrganisationName as the 'natural' key is perfectly permissible in the database relational model, I agree with Scott that a 'surrogate' numeric key would be better here. There are situations in which the use of a natural key has advantages which outweigh the efficiency of a numeric key, but this is not one of them.