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 the security with aop?
What are the types of access modifiers?
What is overloading with example?
Define the term immutable ?
What kind of the information stored inside the assembly?
What is a console application in c#?
What is difference between Enum and Struct?
what is the difference between the debug class and trace class?
Why c# is type safe?
Why main is static in c#?
Explain dataadapter.update method in .net?
How do you prevent a class from being inherited in c#?
If dll and exe files are same it means you can deploy both the files in gac?
How many digits is a 32 bit number?
What is difference between array and list in c#?