Welcome to Dream.In.Code
Getting C# Help is Easy!

Join 118,588 C# Programmers for FREE! Ask your question and get quick answers from experts. There are 825 online right now! We've got more than 500 tutorials and 2,000 snippets. Join and find out why Dream.In.Code is the #1 programming help community on the internet! Registration is fast and FREE... Join Now!



ErrorProvoider for C

 
Reply to this topicStart new topic

ErrorProvoider for C, How to Set Error Provoider for Checkedlistbox

hildaelavarasi
post 4 Aug, 2008 - 04:34 AM
Post #1


New D.I.C Head

*
Joined: 20 Jun, 2008
Posts: 4

Hi....
How to Set Error Provoider for Checkedlistbox

plz Help me....:-(
User is offlineProfile CardPM

Go to the top of the page


allensmith
post 4 Aug, 2008 - 01:14 PM
Post #2


New D.I.C Head

*
Joined: 4 Jun, 2008
Posts: 11



Thanked 3 times
My Contributions


Hello,

Lets say we have 6 items in the CheckedListBox.

this.CheckedListBox1.Items.Add("Test1");
this.CheckedListBox1.Items.Add("Test2");
this.CheckedListBox1.Items.Add("Test3");
this.CheckedListBox1.Items.Add("Test4");
this.CheckedListBox1.Items.Add("Test5");
this.CheckedListBox1.Items.Add("Test6");

Now we will show errorprovider when user selects more than 3 values.
CODE


private void CheckedListBox1_ItemCheck(object sender, System.Windows.Forms.ItemCheckEventArgs e)
{
    
    if (this.CheckedListBox1.CheckedItems.Count == 3) {
        
        if (e.CurrentValue == CheckState.Unchecked)
       {
            
            this.ErrorProvider1.SetError(this.CheckedListBox1, "Select only 3 values");
            e.NewValue = CheckState.Unchecked;
        }
        
        else
       {
            
            ErrorProvider1.Clear();
            
        }
        
    }
    
}


I hope this will help.

Regards,

Allen

This post has been edited by allensmith: 4 Aug, 2008 - 01:17 PM
User is offlineProfile CardPM

Go to the top of the page

Fast ReplyReply to this topicStart new topic
Time is now: 10/11/08 07:34PM

Live C# Help!

C# Tutorials

Reference Sheets

C# Snippets

Bye Bye Ads

Free DIC T-Shirt

T-Shirt Example

Related Sites

Monthly Drawing

Thumb Drive

Partners

Top Contributors

Top 10 Kudos This Month