View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Mike H Mike H is offline
external usenet poster
 
Posts: 11,501
Default Moving a Userform

Brett,

Play with the 2 numbers to get the form precislely where you want.

Private Sub UserForm_Activate()
With UserForm1
.Top = 110
.Left = 25
End With
End Sub


Mike
"Brett" wrote:

I'm familiar with how to move a shape to the top left corner of Range("B3")
but how do I move a userform to the same place please? Regards, Brett