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
Explain about Automatic resource management?
What are triggers of an updatepanel?
What is viewstate? In which event of the page life cycle, is the viewstate available?
What is session mode in asp.net?
Do you know caching feature?
What is a query string in a url?
Explain diff between dataset and datareader?
What is x xss protection?
What kind of programming language is ASP.NET?
What are validator? Name the validation controls in asp.net?
What is cross page posting in asp net?
Define repository pattern in mvc.net? : asp.net mvc
How many types of file extensions for razor views in ASP.Net MVC?
Is global asax mandatory?
How you can return View from ASP.NET Web API method?