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
Caleb Dunn
NA
59
28.9k
Can somone check this C#?
Dec 28 2011 8:14 PM
In my program im trying to add back and forth buttons using panels. By back and forth buttons I mean buttons that go back to other forms and the other one goes to the forms after. Im using microsoft visual studio C#. The problem is when I click the buttons nothing happens.
Heres the code I used:
int counter = 0;
int maximum = 2; //Maximium = total panels started from 0, 1, 2
private void fusionButton5_Click(object sender, EventArgs e)
{
counter++;//the ++ after a integer raises the value by 1
if (counter > 0)//checks to see if counter value is greater than 1
{
fusionButton5.Enabled = true;
}
if (counter == maximum) //checks to see if counter is equal to that of maximum
{
fusionButton4.Enabled = false;
}
}
private void fusionButton4_Click(object sender, EventArgs e)
{
if (counter > 0)
{
counter--;//the -- after integer lowers the value by 1
if (counter == 0)
{
fusionButton4.Enabled = false;
}
}
if (counter < maximum)
{
fusionButton5.Enabled = true;
}
}
private void panelcontrol_Tick(object sender, EventArgs e)
{
switch (counter)
{
case 0:
panel1.Visible = true;
panel2.Visible = false;
break;
case 1:
panel1.Visible = false;
panel2.Visible = true;
panel3.Visible = false;
break;
case 2:
panel2.Visible = false;
panel3.Visible = true;
break;
}
}
}
}
Reply
Answers (
11
)
Second Chance GUI
Keyword behavior in C#