Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8508367
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T03:08:34+00:00 2026-06-11T03:08:34+00:00

I have a word doc with a bunch of ActiveX Control buttons or whatever

  • 0

I have a word doc with a bunch of ActiveX Control buttons or whatever on it, and each time a button is clicked, a corresponding image needs to be displayed in a popup box.

I have a userform called ImageForm, and this is what I’m doing right now:

Sub Button_Clicked()
    ImageForm.Picture = LoadPicture("appropriate_image_path")
    ImageForm.Show
End Sub

Each of these images has a width of 8.5 inches, but their heights can vary anywhere from like 3 to 20 inches (they’re snippets of a pdf). So I’ve set the width of the userform to a little more than 8.5 inches, and that looks fine. But I need to be able to scroll vertically through the image in the userform, since some of the images could be taller than a user’s monitor.

I’m completely stuck on this. What I’ve tried so far is adding a frame to the form, then adding an image control inside the form, and setting the “ScrollBars” property of the frame to vertical. Then instead of using “ImageForm.Picture = …” I use “ImageForm.ImageControl.Picture = …” But it doesn’t work.

Any insight here would be greatly appreciated. Hopefully this question is clear enough, I’ve only been using VBA for a month or so now. (I miss Java so, so much)

Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T03:08:35+00:00Added an answer on June 11, 2026 at 3:08 am

    Here is a neat little trick based on one of my posts

    The idea is to ensure that the image control is in frame control and the image control doesn’t have a border. Also the image control’s PictureSizeMode is set to fmPictureSizeModeClip so that we can scroll the image

    SNAPSHOT (DESIGN TIME)

    enter image description here

    SNAPSHOT (RUN TIME)

    enter image description here

    CODE

    Private Sub UserForm_Initialize()
        With Frame1
            '~~> This will create a vertical scrollbar
            .ScrollBars = fmScrollBarsVertical
    
            '~~> Change the values of 2 as Per your requirements
            .ScrollHeight = .InsideHeight * 2
            .ScrollWidth = .InsideWidth * 9
        End With
    
        With Image1
            .Picture = LoadPicture("C:\Users\Public\Pictures\Sample Pictures\Desert.jpg")
            .BorderStyle = fmBorderStyleNone
            .PictureSizeMode = fmPictureSizeModeClip
        End With
    End Sub
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a word doc with some ActiveX buttons on it. When one of
I have a bunch of Word documents (.doc) stored in my SQL database that
I have some HTML files that I need to distribute in MS Word doc
I have a word doc that I have been writing some VBA for, and
I have a directory which have a few word documents (.doc) files. I want
I have a webpage which has links to documents (MS Word .doc files). If
I want to convert word doc into pdf format. I have a cloud base
I have a requirement where in need to display the Pdf / Word doc(any
I have an idea of converting Word document(.doc/.docx) files to Help file(.chm) format. I
I have one WORD variable in my program. WORD hour; But when I compare

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.