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
Jieha Lee
1.6k
186
8.9k
How to Display Different Panel using same button
Jul 17 2018 10:51 PM
In first panel has 4 button (Customer, Advisor, DPI and Cashier) which is all button direct to same panel. In Screen2 has 2 button(Customer Service, Ambassador) and direct to 3 different panel. The pathway is like this:
1) Customer(1st panel) - Customer Service(2nd panel) - main form(3rd panel)
2) Advisor(1st panel) - Customer Service(2nd panel) - sub form(4th panel)
3) DPI(1st panel) - Ambassador(2nd panel) - form1(5th panel)
4) Cashier(1st panel) - Ambassador(2nd panel) - form1(5th panel)
For the (3) and (4) i already solved it but I cannnot find the solution for (1) and (2).
Here my code for Customer Service button to display 3rd and 4th panel but still the panel not display. Is the code wrong?
private void btnCustService_Click(object sender, EventArgs e)
{
Button btn = sender as Button;
switch (btn.Text)
{
case "Customer":
panelMainForm.BringToFront();
break;
case "Advisor":
panelSubForm.BringToFront();
break;
}
}
Thanks
Reply
Answers (
3
)
can not add View error: Avoid use of “\\.\” in the path
How to Get MAC Address on Live Server in Asp.net c#