Is it posible to check the Value of a System.Windows.Forms.ComboBox and not the Text.
Officespecialisten,
Try setting the ValidationSettings.ValidationPropertyName to "SelectedValue." If you were to do this in C# code, it would look something like this:
ValidationSettings vs = this.ultraValidator1.GetValidationSettings(this.comboBox1); vs.ValidationPropertyName = "SelectedValue";
Hope this helps,
~Kim~
Tnx for the help.