1. don't include the Applicant_Tbl in the form RecordSource - and correction, still an editable form but cannot display applicant info without some fancy VBA code
2. Why is the code in there? Is there a button somewhere that opens the form to "Add New Applicant"? Don't use code in the Open event to move to new record, use the code (embedded macro?) that opens form to open in new record mode.
4. these are edits to the [Applicant_Search_Qry]
SELECT Applicant_Tbl.Application_ID, Applicant_Tbl.ID, Applicant_Tbl.First_Name, Nz([MI],"") AS MidIn, Applicant_Tbl.Last_Name_Company_Name, Nz([Suffix],"") AS Suf
FROM Applicant_Tbl
WHERE (((Applicant_Tbl.First_Name) Like "*" & [Forms]![Applicant_Search_Frm].[Query_First_Name] & "*") AND ((Nz([MI],"")) Like "*" & [Forms]![Applicant_Search_Frm].[Query_MI] & "*") AND ((Applicant_Tbl.Last_Name_Company_Name) Like "*" & [Forms]![Applicant_Search_Frm].[Query_Last_Name_Company_Name] & "*") AND ((Nz([Suffix],"")) Like "*" & [Forms]![Applicant_Search_Frm].[Query_Suffix] & "*"));