Answered
I am trying to make a specific text field required/mandatory before the user can proceed to the next fillable item in the form.
I have been unable to locate specific instructions or code for achieving this end.
Neither form nor the data will not be "submitted" electronically as it is an internal form. The user will print, sign, and submit in person. The goal is to get them complete the text field.
Any assistance or direction will be helpful. Thank you.
An approach you can take is to check the field value in the field's Validate event. If it's OK, then enable the subsequent fields (e.g., making them visible and/or not read-only. If it doesn't check out, make the fields hidden/read-only.
George