TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
james james
NA
419
29.7k
c# winform Math question
Jul 25 2018 3:47 PM
i
i have 3 text boxes I have data in 2 of them, I need the third box to look at the first 2 and if textbox1 is less than textbox 2 than textbox 3 will equal whats in textbox2. If textbox1 is greater than textbox2 it will equal textbox1.
This is what I have tried as you notice the third line is Equal how can I use < less than?
private void txtMinLogic_TextChanged(object sender, EventArgs e)
{
string
a = txtHalfDayUsage.Text;
string
b = tbGreaterThan.Text;
if
(a.Equals(b))
{
txtMinLogic.Text =
""
;
}
else
{
txtMinLogic.Text = txtHalfDayUsage.Text;
}
}
Reply
Answers (
2
)
Border bottom style change
windows application form loading