Click here to Skip to main content
15,881,172 members
Home / Discussions / C#
   

C#

 
GeneralRe: OT Pin
Dave Kreskowiak3-Oct-12 5:24
mveDave Kreskowiak3-Oct-12 5:24 
GeneralRe: C# Windows application not responding after 30 minutes Pin
sujithkumarsl3-Oct-12 4:36
sujithkumarsl3-Oct-12 4:36 
GeneralRe: C# Windows application not responding after 30 minutes Pin
sujithkumarsl3-Oct-12 4:51
sujithkumarsl3-Oct-12 4:51 
AnswerRe: C# Windows application not responding after 30 minutes Pin
DaveyM693-Oct-12 4:21
professionalDaveyM693-Oct-12 4:21 
GeneralRe: C# Windows application not responding after 30 minutes Pin
sujithkumarsl3-Oct-12 4:41
sujithkumarsl3-Oct-12 4:41 
GeneralRe: C# Windows application not responding after 30 minutes Pin
DaveyM694-Oct-12 0:34
professionalDaveyM694-Oct-12 0:34 
GeneralRe: C# Windows application not responding after 30 minutes Pin
sujithkumarsl4-Oct-12 10:17
sujithkumarsl4-Oct-12 10:17 
QuestionTextbox validation c# help Pin
User 94041062-Oct-12 8:57
User 94041062-Oct-12 8:57 
Hi, so I have multiple textboxes on my c# winform and I am looking for a method to validate each box.

My current implementation works, however I am trying to find a way to expand on it and report which textboxes are not validating successfully.

So say return a string or array where i can search through and then set an errorprovider on them.

This is my validation method.(The method is void and not a bool because i want to return a variable with the failed textboxes)
C#
public bool Successful { get; set; }
public string Information { get; set; }

public void ValidateText(List<object> textbox)
{
    foreach (object obj in textbox)
    {
        if (obj == "")
        {
            Successful = false;
        }
        else
        {
            Successful = true;
        }
    }

}


and here is my main code
C#
//list
            List<object> textbox = new List<object>();
            textbox.Add(FirstNTxt.Text);
            textbox.Add(LastNTxt.Text);
            textbox.Add(CourseTxt.Text);
            //validation
            FormValidation validate = new FormValidation();
            validate.ValidateText(textbox);
            if(!validate.Successful)
            {
                MessageBox.Show("error");
            }
            else
            {
               //more stuff that i did not paste in.
            }


Any assistance will be appreciated, thanks.

modified 11-Mar-21 21:01pm.

AnswerRe: Textbox validation c# help Pin
Matt T Heffron2-Oct-12 10:38
professionalMatt T Heffron2-Oct-12 10:38 
AnswerRe: Textbox validation c# help Pin
Smart Arab2-Oct-12 11:17
Smart Arab2-Oct-12 11:17 
GeneralRe: Textbox validation c# help Pin
User 94041062-Oct-12 11:27
User 94041062-Oct-12 11:27 
GeneralRe: Textbox validation c# help Pin
User 94041068-Oct-12 3:37
User 94041068-Oct-12 3:37 
QuestionMonitoring file changes and changing data within the file... Pin
JD862-Oct-12 8:31
JD862-Oct-12 8:31 
AnswerRe: Monitoring file changes and changing data within the file... Pin
Smart Arab2-Oct-12 11:22
Smart Arab2-Oct-12 11:22 
GeneralRe: Monitoring file changes and changing data within the file... Pin
Pete O'Hanlon3-Oct-12 2:03
mvePete O'Hanlon3-Oct-12 2:03 
AnswerRe: Monitoring file changes and changing data within the file... Pin
Eddy Vluggen3-Oct-12 1:39
professionalEddy Vluggen3-Oct-12 1:39 
AnswerRe: Monitoring file changes and changing data within the file... Pin
Pete O'Hanlon3-Oct-12 2:26
mvePete O'Hanlon3-Oct-12 2:26 
GeneralRe: Monitoring file changes and changing data within the file... Pin
Dave Kreskowiak3-Oct-12 5:33
mveDave Kreskowiak3-Oct-12 5:33 
GeneralRe: Monitoring file changes and changing data within the file... Pin
Pete O'Hanlon3-Oct-12 5:37
mvePete O'Hanlon3-Oct-12 5:37 
GeneralRe: Monitoring file changes and changing data within the file... Pin
Dave Kreskowiak3-Oct-12 13:38
mveDave Kreskowiak3-Oct-12 13:38 
AnswerRe: Monitoring file changes and changing data within the file... Pin
BobJanova3-Oct-12 2:42
BobJanova3-Oct-12 2:42 
GeneralRe: Monitoring file changes and changing data within the file... Pin
Pete O'Hanlon3-Oct-12 3:10
mvePete O'Hanlon3-Oct-12 3:10 
GeneralRe: Monitoring file changes and changing data within the file... Pin
JD863-Oct-12 13:59
JD863-Oct-12 13:59 
GeneralRe: Monitoring file changes and changing data within the file... Pin
JD8612-Oct-12 5:27
JD8612-Oct-12 5:27 
QuestionC# setup and deploy project templates located at? Pin
dcof2-Oct-12 5:10
dcof2-Oct-12 5:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.