Hi everybody,
Can anyone help me ?
How do I move to the next Form and go back without having to open new Form in window application. I tried to use in Form1
Form2 f2 = new Form2();
f2.show();
but the problem is that technique opens new Form and if I went to go back to Form1 to modify some info and get back again to Form2, I will have new window of Form2. For example, lets say that I have questioneer application and a each question in a Form by itself and want to change the previous answers without opening new Forms, what is the best techniqe? .
I know that in web application the "Response.Redir ect" is used.
So, is anyone can help me on how to have Next/Previous application?
Can anyone help me ?
How do I move to the next Form and go back without having to open new Form in window application. I tried to use in Form1
Form2 f2 = new Form2();
f2.show();
but the problem is that technique opens new Form and if I went to go back to Form1 to modify some info and get back again to Form2, I will have new window of Form2. For example, lets say that I have questioneer application and a each question in a Form by itself and want to change the previous answers without opening new Forms, what is the best techniqe? .
I know that in web application the "Response.Redir ect" is used.
So, is anyone can help me on how to have Next/Previous application?
Comment