Article ID: 185083 - Last Review: December 11, 1999 - Revision: 1.0

PRB: Combo Box Displays Incorrectly w/ Large DisplayCount

System TipThis article applies to a different operating system than the one you are using. Article content that may not be relevant to you is disabled.
This article was previously published under Q185083

On This Page

Expand all | Collapse all

SYMPTOMS

When you have a large value set in the DisplayCount property of a combo box, the drop-down of the combo box either does not display or displays incorrectly.

RESOLUTION

Use a smaller DisplayCount value.

STATUS

Microsoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article.

MORE INFORMATION

Steps to Reproduce Behavior

  1. Create a form.
  2. Create a custom array property, something like myarr[1].
  3. In the INIT event of the form, place the following code:
          DIMENSION Thisform.myarr[1000]
    
          FOR i = 1 TO 500
             Thisform.myarr[i] = STR(i)
          ENDFOR
  4. Place a combo box object on the form.
  5. Set the RowSourceType to 5-Array and the RowSource to Thisform.myarr.
  6. Set the DisplayCount to 150.
  7. Save and run the form.
  8. Click the drop-down array.

    Nothing shows up. Change the DisplayCount to a smaller number like 50 to fix this problem.
NOTE: If you change the DisplayCount property to 80 or higher, depending upon where you have your combo box in the form and the size of the Visual FoxPro desktop, you may see that the drop-down gets detached from the combo box.

APPLIES TO
  • Microsoft Visual FoxPro 6.0 Professional Edition
Keywords: 
kbnofix kbprb KB185083
Retired KB ArticleRetired KB Content Disclaimer
This article was written about products for which Microsoft no longer offers support. Therefore, this article is offered "as is" and will no longer be updated.