Making a UserForm to appear!

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to make the UserForm appear in a specific part of the
spreadsheet and have it appear in that spot every time it is opened? Thanks
for any help.
 
Sub showup()
With UserForm1
.StartUpPosition = 0
.Top = Application.Top + 142
.Left = Application.Left + 29
.Show
End With
End Sub


HTH. Best wishes Harald
 
Thanks a lot.

Harald Staff said:
Sub showup()
With UserForm1
.StartUpPosition = 0
.Top = Application.Top + 142
.Left = Application.Left + 29
.Show
End With
End Sub


HTH. Best wishes Harald
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top