I created an ErrorProvider and wish to use it with an UltraTextEditor.
How do I set the error property on that textbox? I tried to find an error property or method, similar to .RowError or .SetCoumnError as with the DataTable, but was unable to find anything.
Any help would me much appreciated!~Kelly
So I was looking in the wrong place. You do not set it on the textbox through a property or a method, instead you set it through the errorprovider:
ErrorProviderToUse.SetError(ControlToPutError, "Message Text Here")
If you place a control on a form in the designer and also place an ErrorProvider on that form, then the control will display some new properties in the property grid. These properties are called extender properties and are provided by the error provided. At run-time, as you already figured out, you need to use methods on the ErrorProvider component in order to set them. :)