1
Answer

Main forme menu save

Hi all,

I've searched for it and cant find the answer.

I have a win form application. In the main form, I have a save button.

Now I have a save in the file menu and when I click it I want it the following to do:

Determine the active form in the mainform.
Search on that form for the save button and perform the actions the save button click event does.

Kind regards guys.

I hope someone can help me
Answers (1)
0
Mayur Dighe

Mayur Dighe

NA 1.6k 388.3k 12y
Hey Pieter.....

        you can do this....just try to follow the steps below..

        1. if your "mainform" is MDIForm or normal Windows Form...then
                by invoking Application.OpenForms() method you able to find the name of ACTIVE FORM.

        2. Next you want to do some actions with control available on that form, then
                 you need to use any looping technique (like FOR, Do While...) you can list the Controls on that form with their names by calling Controls() method to enumerate controls.
Accepted