place picture

  • Thread starter Thread starter Pierre via OfficeKB.com
  • Start date Start date
P

Pierre via OfficeKB.com

Hi,

I have a picture object on a userform.
The userform is full screen depending on the resolution of the screen.

how can i have a picture object always in the below right corner of the
userform ?

Thanks,
Pierre
 
Private Sub UserForm_Initialize()
With Me.Image1
.Top = Me.Height - .Height - 20
.Left = Me.Width - .Width - 5
End With

End Sub
 

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