how do you open the form in the first place? Access has differnet methods for you application of the form. The following will open the form in add mode.
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "Company_Details"
DoCmd.OpenForm stDocName, , , acAdd...