Hi,
How to access a control in another form
There's a property for each control determining its visibility outside the
form class. It's 'private' by default, you can change it to 'internal' or
'public' for the control field to become visible outside the form class.
Or, declare a public property on the form class returning the reference to
the control in question.
how to make a form become a MDI container.
There's a dedicated property on the form serving just this purpose -
IsMdiContainer.
--
Sincerely,
Dmitriy Lapshin [C# / .NET MVP]
Bring the power of unit testing to the VS .NET IDE today!
http://www.x-unity.net/teststudio.aspx
authorking said:
How to access a control in another form and how to make a form become a
MDI container.