MDI forms and controls

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a problem with a MDI project. I created the
parent form with controls on it and now I don't need any
of those on the children form. I need to be able to hide
those controls but I guess I need to make some reference
back to the parent form to do that and then add the code
to set visible to false. I can't seem to get the
reference back to the parent form. Help!!!!!
 
* said:
I have a problem with a MDI project. I created the
parent form with controls on it and now I don't need any
of those on the children form. I need to be able to hide
those controls but I guess I need to make some reference
back to the parent form to do that and then add the code
to set visible to false. I can't seem to get the
reference back to the parent form. Help!!!!!

\\\
DirectCast(Me.MdiParent, MainForm).StatusBar1.Visible = False
///
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top