I need to find out what the maximum recommended number of rows are for a Combo Box (using VB6). Having some performance problems.
Your help is much appreciated!
:D
Printable View
I need to find out what the maximum recommended number of rows are for a Combo Box (using VB6). Having some performance problems.
Your help is much appreciated!
:D
try this:
Private Sub Command1_Click()
Do
Combo1.AddItem "xxxxx"
Label1.Caption = Combo1.ListCount
DoEvents
Loop
End Sub
At 32767 the count goes negative.
Don't use too many I say!
How many were you using?
We're trying to find a reason why we shouldn't use one containing a lot of rows. Strange I know! :rolleyes:
We've reduced the rows to a couple of thousand.
Thanx anyway Mark!
:D