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
Guest User
Tech Writer
111
10.1k
How to navigate to second winform from 3rd winform wth Back btn
May 19 2021 4:21 AM
I have three windows form with same CS name like Collateral Welcome.cs
Now I implemented one Back button in 3rd screen, as per business requirement it must go to 2nd screen but where as I am to navigate it to 1st screen.I am really confused how to implement this.
private void btnBack_Click(object sender, EventArgs e)
{
this.Hide();
CollateralWelcome CW = new CollateralWelcome();
CW.Show();
}
every time it is navigating to 1st screen as given below
but it should navigate to
(2nd Screen)
I am using back button from 3rd Screen as given below
(3rd SCreen)
Please help me for this how to achieve back func from 3rd screen to only 2nd screen
Reply
Answers (
3
)
Invisible/Hidden Scroll Bars in C1TrueDBGrid Grid in Windows Forms ?
Search by DateGridWiew using the OleDb library.