Please excuse me butting in.
tylerg11: What are you doing testing the Text property? You need to test the Value (default) property and I suggest it is best to do this is in the BeforeUpdate event because it occurs before anything is changed in the underlying recordset or database and because you can if you wish cancel the event. Hence:
Code:
Private Sub txtTitle_BeforeUpdate(Cancel as Integer)
If IsNull(txtTitle) Then
txtTitle= ""
End If
End Sub
or pedantically
Code:
Private Sub txtTitle_BeforeUpdate(Cancel as Integer)
If IsNull(txtTitle.Value) Then txtTitle.Value = ""
End Sub