How to navigate from one page(form) to another page(form)
using C#.net...please give me the example
Answer Posted / sujai cn
you have to create a second form object in first form event.
Ex:
form2 objform2=new form2(parameters)
objform2.show();
//To hide the present form
this.hide();
| Is This Answer Correct ? | 18 Yes | 7 No |
Post New Answer View All Answers
Explain About .Net remoting
Does c# have functions?
Is string mutable in c#?
What does console readline do in c#?
What is collection class c#?
What is string in c# net?
Explain states of a thread in c#?
Distinguish between continue and break statement?
Can we extend sealed class in c#?
List down the differences between “dispose” and “finalize” methods in c#.
What is the use of dll file in c#?
What is a dynamic assembly?
How can I create a process that is running a supplied native executable (e.g., Cmd.exe)?
What is sorting in c#?
What exactly happens when we debug and build the program?