decalL = (Application.Width - Me.Width) / 2
decalH = (Application.Height - Me.Height) / 2
Me.Width = Application.Width
Me.Height = Application.Height
Me.Top = 0
Me.Left = 0
For Each ctrl In Me.Controls
ctrl.Left = ctrl.Left + decalL
ctrl.Top = ctrl.Top + decalH
Next