Hi Kevin:
Quote:
> The weird thing is that when run the form size is changed to a
> wider setting.
That is how MDI works.
Quote:
> How can I maintain my settings and still have it be an MDIchild?
You need to do two things:
1. Ensure that you have set the AutoShowChildren=False on the main MDI Form.
2. Size the form before you show it, i.e.
Load frmTest
frmTest.Width = ..etc
frmTest.Height = ...etc
frmTest.Show
Hope this helps,
Doug.