Avatar of Quiver
Quiver
 asked on

How to Dynamically Change the Size of a Frame and Scrollbar on an Excel UserForm

I have a list of names on a spreadsheet that I am dynamically adding to a UserForm.  The list is variable resulting in the need to dynamically build the list.  The names are contained within a frame on the UserForm.

How can I adjust the size of the frame and scrollbar based on the number of names placed on the form?
I thought I could simply change the frame height and scrollbar height as the names were being placed on the form but this apparently does not work. (See attached)

Any help that you can provide would be greatly appreciated.

Thank you.
Sample-Dynamic-Frame-and-Scrollbar-v1.1.
Microsoft Excel

Avatar of undefined
Last Comment
Martin Liss

8/22/2022 - Mon
Phillip Burton

You can change the height etc.

For example:

UserForm_search.Frame1.Height = 500

reduces the height significantly.
Quiver

ASKER
I thought I was varying the height dynamically with the following code where iCntrlList is incremented with each name line that is added to the UserForm.  But apparently this is not changing the height of the frame and scrollbar.  Any other suggestions?

    With UserForm_Search.Frame1
       .ScrollHeight = Frame_Scroll_Height + (Search_intHeight + Search_intVerticalGap) * iCntrList
       .Height = Frame_Height + (Search_intHeight + Search_intVerticalGap) * iCntrList
    End With
Phillip Burton

It may be changing it, but the calculation may not be correct.

My experiment to change it resulted in it being - not quite right.

As an experiment, try putting /3 at the end of each line.
All of life is about relationships, and EE has made a viirtual community a real community. It lifts everyone's boat
William Peck
Quiver

ASKER
/3 results in less names being displayed.

As currently coded, 22 of the 63 names are displayed.  The Scroll height increments to 1446 and the Height increments to 1046 while displaying the results.  When the Scroll height increments to 1489 and the Height increments to 1089 the results are no longer displayed.  I have attached some snagits from the displays that I put in.
Martin Liss

I'd like to try to help but I have no idea how to deal with the XML. I have a question though and that is why are you you using a frame and scrollbar and not a Listbox or Listview control?
Quiver

ASKER
It's not XML.  It is VBA.  This is one of many userforms, some with multiple pages, etc.  There is some static data on some of the forms that resulted in the frame being the best solution.  On many of the userforms/pages, the data is dynamically added but I know the maximum length of the frame.  

With this particular userform, I do not know the maximum length of the frame/scrollbars.  It is totally dependant on the number of rows of names (which is variable).

Thanks for your offer to help though.  Any and all help is appreciated.
⚡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.
Martin Liss

It's not XML.  It is VBA.  
Here's what I see when I unpack your zip file.
XML?But in any case I ask again why are you using a frame rather then a listbox or listview, both of which are designed for dynamic data?
Quiver

ASKER
Hopefully, the file is now uploaded as a .xlsm file.  Sorry about that.  Unfortunately, it needs to be a frame to be consistent with the rest of the application.
Sample-Dynamic-Frame-and-Scrollbar-v1.1.
Quiver

ASKER
Just realized that I cannot name a file with a dot (.) when uploading.  Hopefully, the file is now being uploaded as a .xlsm file.
Sample-Dynamic-Frame-and-Scrollbar-v1-1.
Experts Exchange has (a) saved my job multiple times, (b) saved me hours, days, and even weeks of work, and often (c) makes me look like a superhero! This place is MAGIC!
Walt Forbes
Quiver

ASKER
Martin Liss

Sorry to say but the zip still looks the same. How are you creating the zip file? What version of Excel are you using?
Quiver

ASKER
Let's try again
Sample.xlsm
⚡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.
Martin Liss

OK now we're getting somewhere. Be back soon.
Martin Liss

I don't understand something and that is why do you want to change the height of the frame? Since you have a scrollbar it would seem to me that you shouldn't need to do that.
ASKER CERTIFIED SOLUTION
Martin Liss

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
Quiver

ASKER
Actually, after you questioned why I was changing the height of the frame, I commented out the height in the code above, changed the default height value for the frame (350), changed the Frame_Scroll_Height value (65), and it worked perfectly.  I still need to adjust the scroll height dynamically to accommodate the variable amount of names.  

Thanks so much for your help!  For some reason I was definitely stuck on the idea that I needed to change both the height and scroll height.
Your help has saved me hundreds of hours of internet surfing.
fblack61
Martin Liss

I still need to adjust the scroll height dynamically to accommodate the variable amount of names.
Why? I didn't and it worked just fine. In any case you're welcome and I'm glad I was able to help.

In my profile you'll find links to some articles I've written that may interest you.
Marty - MVP 2009 to 2014