I have a form called FrmTest. In the properties of the form I have Height = 9000 and Width = 12000.

When the form displays it's bigger than it should be!

Code:
Debug.Print Me.Height
Debug.Print Me.Width
reports the height as 9300 and not 9000 as it should be The width is 12000 which is correct.

Adding:
Code:
Me.Height = 9000
Me.Width = 12000
in the Form_Load event displays the form the correct size.

Any ideas why this is happening? My program has about 20 forms, all the same size, and this is the only one that's giving me this hassle. It's not a huge issue as it can be corrected in code, just want to know why this is happening.