Move picture to bottom right of screen

gdurham

New Member
Joined
May 17, 2013
Messages
17
Hi,

I am really struggling to figure out how to move a picture to the bottom left of the windows screen in VBA.

Would love it if someone could provide some insight (would also love to know if it is possible to keep it there (even if user scrolls or zooms the screen).

Thanks,

Geoff.
 
Just in case you need it here is a little script to launch your UserForm and position it where you want.

Code:
Sub Show_UserForm()
UserForm1.Show False
UserForm1.Top = 327
UserForm1.Left = 762
End Sub
 
Upvote 0
A brilliant idea indeed.. Simple no complex API and pointersafe's
Needed something to extend a line segment , vector until it reached the right or bottom of screen
 
Upvote 0
A brilliant idea indeed.. Simple no complex API and pointersafe's
Needed something to extend a line segment , vector until it reached the right or bottom of screen
Glad I was able to help you.
Come back here to Mr. Excel next time you need additional assistance.
 
Upvote 0

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top