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
Where can I get the details on migration of existing projects using various technologies to asp.net?
1.What r collections? 2.What is .pdb file? 3.Is it possible to provide access to users in master page? 4.What is dirty n Phantom Read(SQL)? 5.What r different isolation levels(SQL)? 6.How to set authentication mode in web.config file?
Where is session data stored in asp net?
Why is xap important?
Where is cookie used in asp.net?
What is viewstategenerator?
What is session id in web application?
How can we make sure that Web API returns JSON data only?
What are the new login controls in asp.net 2.0?
Can user control be stored in library?
What is a page life cycle?
For which does this Codebehind="MyCode.aspx.cs" is relevent to ?
Is post back in asp.net?
Web API uses which library for JSON serialization?
How asp.net mvc differs from asp.net web forms? : asp.net mvc