Run-time error '2185'
You can't reference a property or method for a control unless the control has the focus.
Private Sub txtName_Change()
strSaveText = Me.txtName.Text
End Sub
The message occurs for Me.txtName.Text and only if the body of the form contains zero records. What's wrong?