Picture: Click on picture to enlarge, click again to go back to original size

Figol

New Member
Joined
Dec 1, 2021
Messages
2
Office Version
  1. 365
  2. 2021
Platform
  1. Windows
Hello, this is my first post, I love Excel but I am not an expert.
I have made an Excel file that contains a lot of pictures and with the VBA code below I can enlarge a picture by clicking on it and bring it back to its original size by clicking on the picture again.
Everything works fine, until I open the Excel file on my second computer. Many of the pictures are distorted and have a different smaller size.
When i click on a pictures it enlarges and when I click again to bring it to its original size, all of a sudden the size of the picture is OK, but it has shifted a few mm to the right.
Anybody that can help me with a solution?

Best regards,

Figol

Sub PYZ_11_Click()
ActiveSheet.Unprotect
Dim big As Single, small As Single
Dim shpDouH As Double, shpDouOriH As Double
big = 0.3
small = 0.09
On Error Resume Next
Set shp = ActiveSheet.Shapes(Application.Caller)
With shp
shpDouH = .Height
.ScaleHeight 1, msoTrue, msoScaleFromTopLeft
shpDouOriH = .Height

If Round(shpDouH / shpDouOriH, 2) = big Then
.ScaleHeight small, msoTrue, msoScaleFromTopLeft
.ScaleWidth small, msoTrue, msoScaleFromTopLeft
.ZOrder msoSendToBack
Else
.ScaleHeight big, msoTrue, msoScaleFromTopLeft
.ScaleWidth big, msoTrue, msoScaleFromTopLeft
.ZOrder msoBringToFront
End If
End With
End Sub
 

Attachments

  • Picture scaling.png
    Picture scaling.png
    207.3 KB · Views: 68

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Hi & welcome to MrExcel.

Not sure whether it will resolve your issue, but try both locking the aspect ratio of the shape and setting its placement to xlMove rather than xlMoveAndSize.
That way the change of any column width or row height on your sheet will not have an effect on your shape's appearance.
Btw, once the aspect ratio is locked changing the scale height will also affect the scale width.

Rich (BB code):
Sub PYZ_11_Click()
    ActiveSheet.Unprotect
    Dim big As Single, small As Single, shp As Shape
    Dim shpDouH As Double, shpDouOriH As Double
    big = 0.3
    small = 0.09
    On Error Resume Next
    Set shp = ActiveSheet.Shapes(Application.Caller)
    With shp
        .LockAspectRatio = msoTrue
        .Placement = xlMove
        shpDouH = .Height
        .ScaleHeight 1, msoTrue, msoScaleFromTopLeft
        shpDouOriH = .Height

        If Round(shpDouH / shpDouOriH, 2) = big Then
            .ScaleHeight small, msoTrue, msoScaleFromTopLeft
            .ScaleWidth small, msoTrue, msoScaleFromTopLeft
            .ZOrder msoSendToBack
        Else
            .ScaleHeight big, msoTrue, msoScaleFromTopLeft
            .ScaleWidth small, msoTrue, msoScaleFromTopLeft
            .ZOrder msoBringToFront
        End If
    End With
End Sub
 
Upvote 0
Dear GWteB,

Thank you for your your advice, I really appreciate this very much.
I applied the changes to my Code, but unfortunately it did not resolve the issue.
Anyhow, thank you very much.
Best regards,
Figol
 
Upvote 0
You're welcome and thanks for the follow-up. Too bad it didn't seem to solve your problem.
 
Upvote 0

Forum statistics

Threads
1,215,339
Messages
6,124,370
Members
449,155
Latest member
ravioli44

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