Am trying to access the parent form functions (methods). Even by using static keyword it is not working.
The parent form is of type (MDI) and has normal child form. This is C# Application. Am trying use this way to access the methods , but no advance !
this.MdiParent
Please help me !
If you declared static methods, then you should call them via parent form’s class name:
If you want to use instance methods, then you should declare them as
publicand call via casting MDI parent reference: