How to simultaneously scroll userform labels with listbox?

dionysus_83

New Member
Joined
Feb 24, 2016
Messages
30
I have listbox that adjust to screen resolution of user computer. Since it is also auto-fit it's columns in some cases scrollbar appear so user could view all columns in listbox!

Since I didn't want to use column header option of listbox I've put labels above listbox of each column.

Of course in case of scrollbar appearance labels remains static and doesn't move along with listbox causing a confusion.

How to move labels with the listbox in case scrollbar appear? Or how to move two listbox simultaneously in case of scrollbar appearance?

I've tried using two listbox where one is showing just 1st row (header) in style I prefer, and second as body, and tried with following code to "attach" them one to another:

Code:
Private Sub ListBox1_Click()
[COLOR=#333333]ListBox2.ListIndex = ListBox1.ListIndex
[/COLOR]end sub

But with no luck! Listbox2 doesn't move along with ListBox1!
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Cross posted https://www.excelforum.com/excel-pr...usly-scroll-userform-labels-with-listbox.html

Cross-Posting
While we do not prohibit Cross-Posting on this site, we do ask that you please mention you are doing so and provide links in each of the threads pointing to the other thread (see rule 13 here along with the explanation: Forum Rules).
This way, other members can see what has already been done in regards to a question, and do not waste time working on a question that may already be answered.
 
Upvote 0

Forum statistics

Threads
1,214,945
Messages
6,122,397
Members
449,081
Latest member
JAMES KECULAH

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