Case "Save"
If InputError() Then Exit Sub
With rs
If booIsAdding Then .AddNew
.Fields("fldFname").Value = txtFname.Text
.Fields("fldMI").Value = txtMI.Text
.Fields("fldLname").Value = txtLname.Text
.Fields("fldFDID").Value = txtFDID.Text
.Fields("fldDOB").Value = DTPicker
.Fields("fldAddress").Value = txtAddress.Text
.Fields("fldCity").Value = txtCity.Text
.Fields("fldState").Value = txtState.Text
.Fields("fldZip").Value = txtZip.Text
.Fields("fldSname").Value = txtSname.Text
.Fields("fldChildren1").Value = txtChildren1.Text
.Fields("fldDob1").Value = DTPicker1
.Fields("fldChild2").Value = txtChild2.Text
.Fields("fldDob2").Value = DTPicker2
.Fields("fldChild3").Value = txtChild3.Text
.Fields("fldDob3").Value = DTPicker3
.Fields("fldChild4").Value = txtChild4.Text
.Fields("fldDob4").Value = DTPicker4
.Fields("fldChild5").Value = txtChild5.Text
.Fields("fldDob5").Value = DTPicker5
.Fields("fldChild6").Value = txtChild6.Text
.Fields("fldDob6").Value = DTPicker6
.Fields("fldChild7").Value = txtChild7.Text
.Fields("fldDob7").Value = DTPicker7
.Fields("fldContact1").Value = txtContact1.Text
.Fields("fldRelationship1").Value = txtRelationship1.Text
.Fields("fldAddress1").Value = txtAddress1.Text
.Fields("fldPhone1").Value = txtPhone1.Text
.Fields("fldCell1").Value = txtCell1.Text
.Fields("fldOther1").Value = txtOther1.Text
.Fields("fldContact2").Value = txtContact2.Text
.Fields("fldRelationship2").Value = txtRelationship2.Text
.Fields("fldAddress2").Value = txtAddress2.Text
.Fields("fldPhone2").Value = txtPhone2.Text
.Fields("fldCell2").Value = txtCell2.Text
.Fields("fldOther2").Value = txtOther2.Text
.Fields("fldContact3").Value = txtContact3.Text
.Fields("fldRelationship3").Value = txtRelationship3.Text
.Fields("fldAddress3").Value = txtAddress3.Text
.Fields("fldPhone3").Value = txtPhone3.Text
.Fields("fldCell3").Value = txtCell3.Text
.Fields("fldOther3").Value = txtOther3.Text
.Fields("fldPrimary").Value = txtPrimary.Text
.Fields("fldFdid1").Value = txtFdid1.Text
.Fields("fldSecondary").Value = txtSecondary.Text
.Fields("fldFdid2").Value = txtFdid2.Text
.Fields("fldReligious").Value = txtReligious.Text
.Fields("fldSrequest").Value = txtSrequest.Text
.Fields("fldComments").Value = txtComments.Text
.Update
End With