How to call a child form method from the master page?
Answer Posted / jyotshna rani mohakud
To call child form from a master form in winform, 1st u have
to ceate the object of a child form.then cal the form
Under the button click from where you want to show the child
form
write the following code.....
childform kk = new childform ;
kk.MdiParent = this;
kk.Show();or kk.showDialog()
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Can you use Web API with ASP.NET Web Form?
Explain what is an abstract class?
What is difference between Lambda Expression and LINQ in ASP.NET?
What are the two Layouts supported by a Web form in ASP.NET?
What is full trust in asp.net?
What is gridview in asp.net?
Please brief not about xsd,xslt & xml?
What is latest version of asp.net mvc? : Asp.Net MVC
How many types of triggers are there in update panel?
how to retrieve property settings from xml .config file.
What kind of programming language is ASP.NET?
How to implement globalization and localization in the use interface in .net.
How to communicate via Remote proxy with Client? a)MarshalByRef b)Marshal by Value or Any thing else?
How do I publish my asp.net application to my isp's web server?
What is page fragment caching?