I’m created a few forms in WinForms application and want to implement validation of user input. There are several ComboBox’es and TextBox’es. I have to check that some fields are not empty and some field require decimal number format. I know there are Enterprise Library Validation Blocks and integrated ErrorProvider. What way can you advice in terms of integration’s speed.
Thanks in advance.
You can do this task without enterprise library, unless your application is really an Enterprise application.
If you are refering to System.Windows.Forms.ErrorProvider then this would be the fastest way. Is a very simple component but I does not make validation, just visual aid. So you will have to do the validation “manually”.