Add image command button

OKCIrish

New Member
Joined
Dec 3, 2022
Messages
32
Office Version
  1. 365
Platform
  1. Windows
  2. Mobile
Hello,

I need help modifying this VBA code. I currently have a button command in the middle of the square, and anytime I push it, select my picture to use it throws it on a different page. What do I need to modify in order to have it drop the picture into the square that the command button resides in?

Book1
ABCDEFGHIJKL
1
2
3Images
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Images


VBA Code:
Sub CommandButton1_Click()
    Dim strFileName As String
    Dim objPic As Picture
    Dim rngDest As Range
    strFileName = Application.GetOpenFilename( _
        FileFilter:="Images (*.jpg;*.gif;*.png),*.jpg;*.gif;*.png", _
        Title:="Please select an image...")
    If strFileName = "False" Then Exit Sub
    Set rngDest = Worksheets("Images").Range("B10:F17")
    Set objPic = Worksheets("Images").Pictures.Insert(strFileName)
    With objPic
        .ShapeRange.LockAspectRatio = msoTrue
        .Left = rngDest.Left
        .Top = rngDest.Top
        .Width = rngDest.Width
        .Height = rngDest.Height
    End With
End Sub
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
When you say that the macro throws your image on a different page, do you mean from a print layout perspective?

I tested the macro and it was putting the image in the correct location in my "Images" sheet. But in my testing, I noticed some things that might be of use to you.

First, the ShapeRange.LockAspectRatio property never affected any pictures whether I left it in or commented it out. Sad that, because I initially felt that was going to be the key.

The .Left and .Top properties work (for me, at least) as expected, anchoring the image to the top left cell. But I noticed that you can either get the image to the correct width or height, but not both. Whichever property you update last in the code is the one which will override. So maybe this modification will help, as it switches the order.

VBA Code:
Sub CommandButton1_Click()


Dim strFileName As String
Dim objPic As Picture
Dim rngDest As Range

strFileName = Application.GetOpenFilename( _
    FileFilter:="Images,*.jpg;*.gif;*.png", _
    Title:="Please select an image...")

If strFileName = "False" Then Exit Sub

Set rngDest = Worksheets("Images").Range("B10:F17")
Set objPic = Worksheets("Images").Pictures.Insert(strFileName)

With objPic

  .Height = rngDest.Height
  .Width = rngDest.Width
  .Left = rngDest.Left
  .Top = rngDest.Top

End With

Set rngDest = Nothing
Set objPic = Nothing

End Sub
 
Upvote 0
When you say that the macro throws your image on a different page, do you mean from a print layout perspective?

I tested the macro and it was putting the image in the correct location in my "Images" sheet. But in my testing, I noticed some things that might be of use to you.

First, the ShapeRange.LockAspectRatio property never affected any pictures whether I left it in or commented it out. Sad that, because I initially felt that was going to be the key.
No the macro isn't setting the dropped picture in the correct cell that I would like it to. It's always someone where on the page and I have to click and drag it over to my print square
 
Upvote 0

Forum statistics

Threads
1,215,200
Messages
6,123,604
Members
449,109
Latest member
Sebas8956

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