Hello again, I have a new MDI-related question:
I have a string in one of my child forms that is changed with a text box. I want to display that string not only on that form, but on another child form. How might I exchange that string between the different forms Thanks!

Changing strings from one child form to another
mina_mina
I suggest you create a method on the other form class to accept a new text value. The form that contains the text box would then simply call that method.
You would have to keep track of the other form within the form with the text box though.