Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to access to components from MDI parent to Mdi child forms..

Status
Not open for further replies.

iara

Programmer
Oct 2, 2002
17
0
0
HN
How can I acces to controls from form A to form B. Form a is the container parent form, and I would like to access to the richtextbox of form b which is the child form.
thanks in advance
 
Doesn't the MDI form have a collection of it's child forms?

I don't know -- just asking (don't have my API reference with me)

Chip H.
 
Meybe I'm wrong, but I always do in this way:

b.ShowDialog();
a.richText = b.richText;

or somthing like this
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top