Assuming Form 1 = Master and Form 2 = NewInspectionForm and the key was called MasterKey you could add the following code to Form 1
Private Sub btn_OpenInspectionForm_Click()
DoCmd.OpenForm "NewInspectionForm", , , , , , MasterKey.Value
End Sub
And then add this code to the Form_Open...