Hi,
I havea an MDI parent form called MDIParent1. THis parent form comes with the VS prebuilt forms in add items.
Every time i click new form, it will generate new child form.
I need to display the title text of a child form, when i click the child form.
But i'm in dount weather i should use the MdiChildActivate() event of the parent form or should i use the Mouse_Click()
What is the event i need to use to get the title text of the form in an event of click on a child form?
cheers

1 answers
It depends whether you want to display the title text of the child form (in a MessageBox say):
1. Only when the child form is activated;
2. Only when the child form is activated or closed; or
3. Every time it's clicked whilst it's activated.
In those situations, I'd handle the following events:
1. The child form's Activated event;
2. The Mdi parent form's MdiChildActivate event; or
3. The child form's MouseClick event.
answered 2 years ago by:
17279
This post was imported from csharpfriends, if you have a similiar question please ask it again.
All previous members have been migrated, hope you enjoy the new platform!