J
jim c.
this is what I use to maximize userform... maybe something
here you can use
***********************************************************
Sub ShowAppSize()
Application.WindowState = xlMaximized
appWidth = Application.Width
appHeight = Application.Height
With UserForm1
.Height = appHeight
.Width = appWidth
End With
End Sub
***********************************************************
hope this helps...
here you can use
***********************************************************
Sub ShowAppSize()
Application.WindowState = xlMaximized
appWidth = Application.Width
appHeight = Application.Height
With UserForm1
.Height = appHeight
.Width = appWidth
End With
End Sub
***********************************************************
hope this helps...