Private Sub Form_Load()
On Error GoTo Form_Load_Err
DoCmd.GoToRecord acForm, "frmAddDevices", acNewRec
Form_Load_Exit:
Exit Sub
Form_Load_Err:
MsgBox Error$
Resume Form_Load_Exit
End Sub
This is the the code that is ran only when the specified form is opened. It did not occur until I changed the model field from manual entry to a combobox.