How to navigate from one page(form) to another page(form)
using C#.net...please give me the example
Answer Posted / ramesh kumar verma
Firstly create a second form object with any instance and do
the given procedure:-
form2 objform2=new from2();
objform2.show();
//hide the present form
this.hide();
| Is This Answer Correct ? | 12 Yes | 5 No |
Post New Answer View All Answers
What are the different types of delegation?
What is null in database?
how dot net compiled code will become platform independent?
Is c# an array?
How big is a float?
Why use a singleton instead of static methods?
What is deadly diamond problem?
What are strong name assemblies?
What is the use of delegates in c#?
in the nunit test framework, which attribute must adorn a test class in order for it to be picked up by the nunit gui?
How to use the sreamReader class to read form a text file?
What problem does Delegate Solve?
What is the difference between out and ref in c#?
What is a template class?
What is callback method in c#?