Sorry for the double post. I can't edit my posts but,
It's probably worth mentioning that on the double click event I changed:
Code:
Else
'Combo was blank, so go to new record.
RunCommand acCmdRecordsGoToNew
End If
to
Code:
Else
'Combo was blank, so go to new record.
DoCmd.GoToRecord , , acNewRec
End If
As the the original part was throwing up errors but the new code seemed to fix it.
I am also having an error with a Save and Close button. When I click it an error message appears stating "Error 2467: The expression you entered refers to an object that is closed or doesn't exist."
and then only has an OK button, this only seems to appear when I type something into the form then try to save and close. However the data is still saved to the table and can still be selected from the combo box