My form (Me) which contains several field textboxes and a user-input textbox was set up for viewing only as follows:
With Me
.AllowEdits = False
.AllowAdditions = False
.AllowDeletions = False
End With
Can I still make the input textbox in the form editable? I need to do this as the textbox will receive input from users to navigate to a certain recordset based on the value keyed in. At the moment, user can’t key in anything in the textbox.
Thanks in anticipation.