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
What are the difference between overriding and overloading?
Is LINQ performance wise better or using sqlcommand?
What does mvc represent in asp.net? : asp.net mvc
Differentiate the session object and application object?
Why viewstate is used in asp.net?
Which class is used to send an email message from an ASP.NET Web page?
How do you do client-side validation in .net? How to disable validator control by client side javascript?
What are sessions in asp net?
When should I use server transfer and response redirect?
Define web services in asp.net.
What is the difference between pathparam and queryparam?
Can we add code files of different languages in app_code folder?
What is true about application service provider?
How do I create a web form?
Which control has default post back is enabled(true)?