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 is form submit?
Explain the difference between asp.net mvc and asp.net webforms
How to bind all the binding controls in a page at once in ASP.NET?
Why and where this web.config file is used?
What are the 3 types of web?
What is preprocessor in .net? Where it use?
What will happen if the server confugration file and the application confugration file have different values for sassion state ASP.NET?
How can you register a custom server control to a web page?
If I am developing an application that must accomodate multiple security levels though secure login and my asp.net web application is spanned across three web-servers (using round-robin load balancing). What would be the best approach to maintain login-in state for the users?
How to set the pane area to transparent of a scrollPane component.?
Can we use a static function with a non-static variable?
To display data in a Repeater control which template you provide?
How can we add an event handler for a ASP.NET function executed on MouseOver for a certain button.
What is the purpose of session management?
Out of ASP or ASP.NET which one is stateless?