Private Sub UserForm_Initialize()
With Application
.WindowState = xlMaximized
Zoom = 100 * IIf(.Width / Width <= .Height / Height, .Width / Width, .Height / Height)
Height = .Height - 15: Width = .Width - 15
Top = (.Height - Height) / 2: Left = (.Width - Width) / 2
End With
End Sub