full size forms

  • Thread starter Thread starter Ripan
  • Start date Start date
R

Ripan

I have used the following code to make my forms full size:

With Application
Top = 0
Left = 0
Height = .Height
Width = .Width
End With

However, I notice that during run-time, after the initialization of the
form, the Top property is set to 7.5. I want the form to cover the
entire screen. Is there something wrong with what I have done or this
just one of Excel's charming quirks?
 
My userform seems to maintain a top of 0. Of course it's not locked in
place so maybe the quirk is the user moving it<g>.
 
Back
Top