Method Execution from one form to another... Child to Parent...

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Thanks for the response to my other question... What would be the easiest way to execute a method in a mdichilds mdiparent form?... Basically call a public method exisiting within the mdi parent from the child

Thanks again

Anthony
 
* =?Utf-8?B?QW50aG9ueSBOeXN0cm9t?= said:
Thanks for the response to my other question... What would be the
easiest way to execute a method in a mdichilds mdiparent
form?... Basically call a public method exisiting within the mdi parent
from the child?

\\\
DirectCast(Me.MdiParent, MainForm).DoSomething()
///
 
Back
Top