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!
reports the height as 9300 and not 9000 as it should beCode:Debug.Print Me.Height Debug.Print Me.WidthThe width is 12000 which is correct.
Adding:in the Form_Load event displays the form the correct size.Code:Me.Height = 9000 Me.Width = 12000
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.




The width is 12000 which is correct.
Reply With Quote