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
Can bool be null c#?
What is the difference between parse and tryparse in c#?
Where do we use static class in c#?
What is event delegate in c#?
Are arrays value types or reference types?
What does question mark mean in c#?
How can you achieve run time polymorphism in C#?
What is marshalling and what are different kinds of marshalling?
What is uint16?
Is datetime nullable c#?
How are methods overloaded?
What is difference between mutable and immutable in c#?
How can you read 3rd line from a text file?
What namespace is list in c#?
What is type safe code?