Click to See Complete Forum and Search --> : Combo Box Scroll Bar


pgururaj
July 19th, 2006, 02:18 PM
I have searched a lot of forums to find a solution regarding the vertical scrollbar in a combobox. Seems like every time I click the combobox, the values are shown but the scroll bar fails to appear. I have currently 84 items to display on a screen that shows only 40. Is there any way of activating the vertical scroll bar. I realize that it is automatically turned on but it does not seem to appear in my program.

Thanks

aniskhan
July 19th, 2006, 09:53 PM
i can't find any such problem , there seems to be problem in ur code somewhere.

HanneSThEGreaT
July 20th, 2006, 02:19 AM
I have searched a lot of forums to find a solution regarding the vertical scrollbar in a combobox. Seems like every time I click the combobox, the values are shown but the scroll bar fails to appear. I have currently 84 items to display on a screen that shows only 40. Is there any way of activating the vertical scroll bar. I realize that it is automatically turned on but it does not seem to appear in my program.

Thanks

Hello & Welcome to the Forums!:wave:

What is the code you are using¿

pgururaj
July 20th, 2006, 05:06 PM
typename is the name of my combobox so: -

For r as integer = 4 to 88
b = X1s.Cells(r,2).value
typename.Items.Add(b.ToString)
Next

X1s is an excel work sheet

Dim X1s As Excel.Worksheet =CType(X1.bWorksheets(2), Excel.Worksheet)

Thanks