I work in c# windows form vs 2015 selecting data from excel
problem i face it
supose i have in excel file
user id dateprint
1001 22/02/2017

if try add this user 1001 again with date 23/02/2017
it must give me message this user found before
but this is not happen and this is actually my problem
my code

bool c = QRC.UserExists(textBox1.Text);  

bool b = UserExistsToday();  

if (c == true)  

{  

if (b == true)  

{  

label8.Text = "User added today";  

}  

else  

{  

label8.Text = "User added before";  

}

Recommended Answers

All 2 Replies

While I wonder why the == true is there, in Visual Studio for over a decade I can break on the suspect line to examine the variables and see what's what. Try that.

I don't have a suggestion for a solution but I'd like to comment on the code. I've taken the above code and rewritten it as

if (QRC.UserExists(textBox1.Text))  
{  
    if (UserExistsToday())  
    {  
        label8.Text = "User added today";  
    }  
    else  
    {  
        label8.Text = "User added before";  
    }

without getting into a discussion as to the preference for same-line or separate-line brace brackets, can you see how removing some white space and the unnecessary b and c variables (which are not named to be descriptive), the code is now much easier to read?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.