Q: Centering an MDI Child Form 
Author Message
 Q: Centering an MDI Child Form

When using MDI forms you can't set StartUpPosition property to CenterScreen
like you can with non MDI forms. So I try and set it manually.

 frmNewDatabase.Visible = False
 frmNewDatabase.Left = (MDIMain.ScaleWidth - frmNewDatabase.Width) / 2
 frmNewDatabase.Top = (MDIMain.ScaleHeight - frmNewDatabase.Height) / 2
 frmNewDatabase.Visible = True

that centers it. but as soon as I modify the Left property it automatically
shows the form even if its visible property is set to false. How can I center
it without have a jumping effect. (It shows the form on the left, and then
jumps to the center) all my MDI children are doing this. I just wish my
children would behave. =)

Any ideas?



Sun, 03 Sep 2000 03:00:00 GMT  
 Q: Centering an MDI Child Form


Quote:
>When using MDI forms you can't set StartUpPosition property to CenterScreen
>like you can with non MDI forms. So I try and set it manually.

> frmNewDatabase.Visible = False
> frmNewDatabase.Left = (MDIMain.ScaleWidth - frmNewDatabase.Width) / 2
> frmNewDatabase.Top = (MDIMain.ScaleHeight - frmNewDatabase.Height) / 2
> frmNewDatabase.Visible = True

>that centers it. but as soon as I modify the Left property it automatically
>shows the form even if its visible property is set to false.

[snip]

Use the Move method on the form.  This way, you can set all of the
properties at one - at least this way the form will show up correctly.

HTH,

Jason



Sun, 03 Sep 2000 03:00:00 GMT  
 
 [ 5 post ] 

 Relevant Pages 

1. Center an MDI Child in MDI form

2. Q: Form activate Fires On Non Child MDI Forms But Only Once On Child Mdi Forms

3. MDI Child Form Centering

4. Centering MDI Child Form

5. center a child form in a MDI

6. Centering child form in MDI

7. Center MDI Child Form

8. Centering a child form in an MDI Window

9. Centering child form in mdi window

10. How to center the MDI Child form when it is loaded

11. Newbie Question - Center MDI child form

12. How to center MDI child form

 

 
Powered by phpBB® Forum Software