MDI and Children

cardiaccomputer

New member
Joined
Aug 20, 2009
Messages
1
Programming Experience
Beginner
I have a peice of software I am just putting the finishing touches to cosmetically.

I have the problem of the midi-children forms opening displaying thier 'toolbar' at the top with the maximism, close etc.

I do not want this to happen, I am using vb.net (windows application)
 
Do you mean:
VB.NET:
Dim f As New Form
f.MdiParent = Me
f.ControlBox = False
f.Show
:cool:
 
Back
Top