Child form access to mdi parent

diegoher

New member
Joined
May 27, 2006
Messages
3
Programming Experience
1-3
Hi, I'm working in a simple multi document editor, each time I click on a new document I call to a new form like this:

Dim xfrm As New frmNewDocument
xfrm.MdiParent =
Me
xfrm.Show()

In the mdi form I have some controls, like tabs and toolstrip, my questions is, if there is a way that I can access those controls from the child windows.

Thanks for the help

Diego
 
You should read this three part article series: Multiple Forms The second part is about "accessing controls on other forms"
 
Back
Top