OldBirdman
Registered User.
- Local time
- Today, 07:56
- Joined
- Jul 14, 2008
- Messages
- 15
Run-time error '2185'
You can't reference a property or method for a control unless the control has the focus.
The message occurs for Me.txtName.Text and only if the body of the form contains zero records. What's wrong?
You can't reference a property or method for a control unless the control has the focus.
Code:
Private Sub txtName_Change()
strSaveText = Me.txtName.Text
End Sub