Search results for query: *

  1. MediaHub

    Question How call methods from child window of another Form( Not a Child/Parent Window)

    yes similar to this, but i a trying to access procedure of Form 3 from MDIChid, there is nothing to do with Parent form in this case. Any Way i found the solution on Microsoft Forum. Thank you for response. var iForm3= Application.OpenForms.OfType<Form3>().Single(); iForm3.MethodOnForm3();
  2. MediaHub

    Question How call methods from child window of another Form( Not a Child/Parent Window)

    In My Projects i Have 3 Forms: Form1: MDIParent Form2: MDIChild Form3: Normal Form i want to access data and call methods of Form3 from Child Window. I am new to C# can any one solve my problem.
Back
Top Bottom