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!

MDI Forms, PArent and Child

Status
Not open for further replies.

IlyaRabyy

Programmer
Nov 9, 2010
566
0
16
US
Colelagues,
I have a Main form (Parent), with bar menu, and a number of Child forms called in that bar menu.
IMS, Properties sheet for a form did have property setting for MDI Form in the past - which is there in the VS 2012 I have), - and also for making form a Child one on Design time (at least in VB6, again - IMS).
Now, I see IsMdiContainer property, but no IsMdiChild in the Properties sheet anymore... [ponder]

I got around it with

Code:
frmChild.MdiParent = Me
frmChild.Show()

in the ToolStripMenuItem_Click() event procedure, but...

What am I missing?

Regards,

Ilya
 
Didn't we cover this over a year ago in thread1867-1802479?
 
Right!
I totally forgot about it!
It's been a year since I could do any programming (t's not an excuse, just explanation, so - my apologies!)

Regards,

Ilya
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top