+ Reply to Thread
Results 1 to 2 of 2

Prevent image resizing in userforms?

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    06-02-2005
    Posts
    100

    Prevent image resizing in userforms?

    Hi all,

    Is there a way to keep images in user forms to fit the area defined for them in the object's properties?

    Scenario:

    I have images that I need to use in userforms. I add the images to the userform, I set the image control properties and the image fits inside the boundaries fine. When I execute the userform, it shows up fine on my system.

    However, on some folks' systems the same image shows up distorted - either stretched out and only part of the image is viewable within the bounds of the control properties, or both stretched and squished so not only does it not fit but the text in the image is distorted and not readable.

    I've tried using the 3 different image fitting controls - clip, stretch, zoom. On my screen they all look correct. On coworker's system all 3 look wrong (in different ways).

    I've tried using both BMPs and JPGs, with the same three fitting controls. Same issues.

    I've tried toggling autosize on and off on all three settings, both image types. Same issues.

    One thing I have noticed is that in the source image file, the pixels are one thing, say 100x50. When I import the picture into excel and fit the control's size to the image it's half the size, here 50x25.

    On my co-worker's system it does look like when viewing one of the images using Clip that the image itself is about twice the size of the control box and you are only seeing part of it.

    Any thoughts on how to fix this? An easy setting I'm missing I hope?

  2. #2
    Forum Contributor
    Join Date
    10-14-2020
    Location
    Shanghai
    MS-Off Ver
    O365
    Posts
    157

    Re: Prevent image resizing in userforms?

    Hi
    can you define the picture size when loading the userform?

    Private Sub UserForm_Initialize()
    With FrmHelp
      .StartUpPosition = 0
      .Left = Application.Left + (0.5 * Application.Width) - (0.5 * .Width)
      .Top = Application.Top + (0.5 * Application.Height) - (0.5 * .Height)
    '  .Show
    End With
    
    With FrmHelp.Image1
    .Width = 50
    .Height = 25
    End With
    End Sub
    I use the first WITH to position the userform on the screen (if you use multiple screens) and the second to adjust the image1 in the userform.

    good luck

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] VBA Help - image resizing
    By Carlab49 in forum Excel General
    Replies: 9
    Last Post: 07-11-2019, 09:52 AM
  2. [SOLVED] Help resizing image - produces different image size on different computers.
    By Andrew Entee in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 11-18-2017, 01:47 PM
  3. [SOLVED] Workbook Resizing - How To Prevent ?
    By Logit in forum Excel Programming / VBA / Macros
    Replies: 14
    Last Post: 10-07-2016, 04:43 PM
  4. resizing the image in PPT using VBA
    By queryak in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 09-10-2012, 04:23 AM
  5. Resizing an image pasted to ppt
    By c7015 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 05-16-2012, 01:21 PM
  6. Placing and resizing an image + delete existing image
    By dsheets05 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 08-01-2011, 09:05 PM
  7. Resizing an image to a % value
    By Taff in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 04-20-2005, 01:42 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1