Good morning,
I am working on a C # winform application that uses validation for controls. The problem I am facing is that when the user clicks on the text box and tries to click, the check activates and re-focuses the control, basically the user cannot click the control until another control.
My desired result is that ALL controls on the form are checked when the user clicks the submit button. I would like the errorProvider icon to appear next to the fields that are in the error, and allow the user to correct them as they see fit.
My question is how to configure the control so that the user can click outside it when there is an error. I would like the user to be able to fill out the rest of the form and return to the error on their own, instead of having to immediately deal with it.
Thank you in advance for your help and advice,
source
share