Is it possible

  • Thread starter Thread starter T.c.Goosen1977
  • Start date Start date
T

T.c.Goosen1977

I know that on can manually set the userform launching possition but i
it possible for the userform to fill the full screen automatically whe
you load it...reason...so u have the same visual when working on a 15
17 or 19" screen.
Thanks
Theun
 
Sub UserForm_Initialize()
With Application
Me.Top = .Top
Me.Left = .Left
Me.Height = .Height
Me.Width = .Width
End With

End Sub
 
I have tried it but a msgbox pops up highlighting the Me.Top and
displaying "Compile error, invalid use of property"....any advice?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top