View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
scott scott is offline
external usenet poster
 
Posts: 577
Default Align the form to the top left

Thanks, it works.

"Vergel Adriano" wrote:


Private Sub UserForm_Initialize()
Me.StartUpPosition = 0
Me.Left = 0
Me.Top = 0
End Sub


--
Hope that helps.

Vergel Adriano


"Scott" wrote:

How to align the form to the top left? Right now when the form is
initialized, it is centrally aligned.