Apr 29, 2002 #1 ctlin Technical User Apr 17, 2002 77 US when i load new child windows at runtime, they come up a different size than when i was building them in VB. Call Load(childForm1) how do I make MDI child windows load up the same size at runtime as in the project?
when i load new child windows at runtime, they come up a different size than when i was building them in VB. Call Load(childForm1) how do I make MDI child windows load up the same size at runtime as in the project?
Apr 29, 2002 #2 Foada Programmer Feb 4, 2002 1,110 US Try this in each of the childs' form load event Private Sub Form_Load() Me.Height = 'design height desired Me.Width = 'design width desired End Sub hope this helps Anything is possible, the problem is I only have one lifetime. Upvote 0 Downvote
Try this in each of the childs' form load event Private Sub Form_Load() Me.Height = 'design height desired Me.Width = 'design width desired End Sub hope this helps Anything is possible, the problem is I only have one lifetime.