Yes I am seeing how long it takes.... 
For now, I guess I will stick with unbound since I am already into it so far. I scrapped the UPDATEs and just have one INSERT with variables that contain all the possible fields, only if not null. Here is what I am trying right now:
Code:
If Not IsNull(Me.LocationDescription) Then
FieldList = FieldList & ", LocationDescription"
ValuesList = ValuesList & ", '" & Me.LocationDescription & "'" 'text
End If
CurrentDb.Execute "INSERT INTO Captures (" & FieldList & ") VALUES (" & ValuesList & ")"
Another reason that I am sticking with it is that I have had bound forms in the past that I didn't completely understand everything Access was doing in every situation.... I feel like there will be no surprises this way.....
Also if I like the way this turns out, I may write a script that will write the vba for me...