Hi there,

I have some issue with the ComboBox Scrollbar height after adding items to it, instead of max. 8 items, it shows me almost all with a long vertical scrollbar.

Here is the sample code:

Code:
Dim itCnt As Integer

For itCnt = 0 To 59
  cboMin.AddItem Format(itCnt, "00")
 Next itCnt
In the IDE, while running the code is working as it should, but after compiling the code, the vertical scrollbar height increases to 30 items.

p.s. I'm using "mainfest" from the Resource file.

How could I fix this issue?

Thank you for suggestions!