|
-
Mar 30th, 2000, 07:13 PM
#1
Thread Starter
Fanatic Member
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!
-
Mar 30th, 2000, 08:45 PM
#2
Frenzied Member
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?
-
Mar 30th, 2000, 08:56 PM
#3
Thread Starter
Fanatic Member
We're trying to find a reason why we shouldn't use one containing a lot of rows. Strange I know! 
We've reduced the rows to a couple of thousand.
Thanx anyway Mark!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|