Tagged Questions
The errorprovider tag has no wiki summary.
6
votes
1answer
1k views
Customizing WinForms ErrorProvider to display it's icon inside control's entry
I have some custom/user controls that in most cases have label and entry, like this:
Is there any way I can customize standard WinForms ErrorProvider to display it's icon inside entry (entry - ...
3
votes
1answer
58 views
Is there any issues with having a separate ErrorProvider for each control?
Normally you would have a single ErrorProvider for all the controls on a form; however I have a control that subtypes a textbox that need to show the user an error. I don’t wish to have to put an ...
3
votes
3answers
2k views
C# WinForms ErrorProvider Control
Does anyone know if there is a way to get a list of controls that have the ErrorProvider icon active. ie. any controls that failed validation. I'm trying to avoid looping all controls in the form.
...
3
votes
1answer
1k views
C# Winforms PropertyGrid and ErrorProvider
I'm working on extending the errorprovider to the propertygrid and treeview controls. I found a very helpful post at: Example
detailing how to add the errorprovider to a propertygrid, and it works ...
3
votes
4answers
5k views
Windows Forms - ErrorProvider + DataGridView
How can I hook in the ErrorProvider with individual cells on the DataGridView control?
2
votes
1answer
1k views
How to use error provider at run time along with associating any control to validate
I am trying to create a Validation in a reusable fashion.
Purpose:
Make the validation control reusable.
Error Provider should associate with control passed dynamically and can be set or cleared at ...
1
vote
2answers
75 views
ErrorProvider using class
I have made the following class to avoid the repetition if else code , again and again :
public class Error
{
private ErrorProvider errProvider;
public void SetError(Control control, ...
1
vote
1answer
843 views
DataBinding and ErrorProvider - How to provide custom error messages?
We use BusinessObjects, implementing IDataErrorInfo and IEditableObject. BindingLists with those Objects are added to BindingSources, those are used to bind UserControls and DataGrids on the forms ...
1
vote
2answers
1k views
Errorprovider shows error on using windows close button(X)
Is there any way to turn the damned error provider off when i try to close the form using the windows close button(X). It fires the validation and the user has to fill all the fields before he can ...
1
vote
2answers
2k views
disable validation of errorprovider when click cancel button
is there a way to disable the validation of errorprovider elegantly when click cancel button to dismiss a winform?
The validation always happens when the textbox lose focus, and i don't wanna it to ...
1
vote
2answers
102 views
Need help on this logic… (.NET)
This is the code I have in my form to check if the date the user selected is more than 14 days in advance, or in the past.
If (dtpDate.Value > DateTime.Today.AddDays(14)) Then
...
1
vote
1answer
774 views
Do not want Error Provider to check control validation until save event
I am writing a User Control. Into each control I am loading a custom biz object. Because the biz object implements IDataErrorInfo interface I am able to use the ErrorProvider control on the user ...
1
vote
1answer
461 views
How can I emulate ErrorProvider in .NET Compact Framework?
Since there is no ErrorProvider class in .NETCF, how can I implement similar functionality (not necessarily exactly like ErrorProvider)?
I am using all the regular databinding constructs to bind ...
1
vote
4answers
699 views
Enumerate errors in an error provider
Is it possible to enumerate all the current errors being displayed through an "Error Provider" without having to access the controls?
0
votes
0answers
38 views
How do I add an errorprovider if using / (Slash) in textbox in C#?
I'm creating a web scraper in C# using Visual studio. The source code of the site changes completely when someone inputs a address with a slash in it. Ive put a check-box that detects if the site is a ...
0
votes
1answer
53 views
error provider is not blinking uniformly
I have an error provider providing error for 4 controls..
when I set all the four errors, only two of them blink together at a time and all four settle down after certain time..
even if I set two ...
0
votes
2answers
57 views
create new control from errorProvider
I want to create a control MessageProvider just like ErrorProvider..what I did is, created a class and inherited from ErrorProvider..
But now problem is, instead of SetError and GetError methods, I ...
0
votes
1answer
74 views
Padding Top and Bottom in ErrorProvider
In ErrorProvider control we can use SetIconPadding(); in order to set number of pixels to add between the icon and the control.
In this way we can move icon horizontally.
How to do the same but in ...
0
votes
2answers
101 views
High CPU usage when using ErrorProvider in WinForms, why?
I've got an application that goes into high CPU usage (slowly over time) when the ErrorProvider control sets the blinking icon continuously on several controls.
The high CPU usage is not immediate ...
0
votes
1answer
419 views
BindingSource, EndEdit, & ErrorProvider raise event on unchanged fields
public class Person
{
private string firstName;
public string FirstName
{
get { return firstName; }
set
{
if ...
0
votes
2answers
403 views
Validating with errorProvider using dropdownlist in Windows Forms?
So basically I am trying to validate my drop down list (combobox) using the Validating event. This works, but calls the focus to my drop down list, not allowing a selection to be made.
Is there any ...
0
votes
1answer
1k views
How to set ErrorProvider Icon left for all Controls programmatically
We use derived Form-Classes, with one base form class for our software.
On the derived forms we use DataBinding extensively to deal with our BusinessObjects, all implementing IDataErrorInfo, throwing ...
0
votes
1answer
393 views
How do I change the CellErrorStyle for an Xceed Datagrid?
So in the Xceed documentation there is a code example that does not work for me. It may be because my grid is bound to a DataGridCollectionView. The objects in the collection used by the ...
0
votes
2answers
893 views
ErrorProvider Not Allowing Blank Date TextBox Field
I'm using the ErrorProvider in VB.Net (2005) which is associated with a BindingSource that is bound to a custom object that I have created. This custom object contains a date field that has a "Date" ...
0
votes
2answers
3k views
Error Provider in WPF
I am looking at WPF componenents in the toolbox but I cannot find the error provider that is present in 2005/2008.
Is it removed?
0
votes
1answer
338 views
Focus tabpage on error (.NET)
i have a TabControl with several TabPages and controls in every TabPage. I'm using some data binding and validation bult on entity framework. The problem is that when error occures on the tab, other ...
0
votes
3answers
187 views
Check Control.Value for data
I have several different controls (TextBoxes, DateTimePickers, MaskedTextBoxes) on a form that I would like to check to see if they contain any data. I have the following code in the Click event of ...