PRB: Listbox Does Not Automatically Display Correct Row

Last reviewed: December 25, 1995
Article ID: Q141637
The information in this article applies to:
  • Microsoft Visual FoxPro for Windows, versions 3.0 and 3.0b

SYMPTOMS

The list box does not initially highlight the correct row until it has received the focus. The list box is always scrolled to the top of the list.

WORKAROUND

Inside the list box Init event, type this code:

   THIS.REQUERY()

STATUS

Microsoft is researching this behavior and will post new information here in the Microsoft Knowledge Base as it becomes available.

MORE INFORMATION

Steps to Reproduce Behavior

  1. Create a new form.

  2. Add the following tables to the Data Environment:

       Customer   (Located in VFP/SAMPLES/DATA/)
       Orders     (Located in VFP/SAMPLES/DATA/)
    
       NOTE: The tables should not be related.
    
    

  3. Add a text box to the form. The text box should prevent the list box from receiving the focus when the form is run.

  4. Add a list box to the form, and change the following properties:

       ColumnCount    =  2
       ColumnWidth    =  0,100
       ControlSource  =  ORDERS.CUST_ID
       RowSource      =  CUSTOMER.CUST_ID,CONTACT
       RowSourceType  =  FIELDS
    
    

  5. Run the form. Note that the list box is scrolled to the top and no row is highlighted. If you press the TAB key to move to the list box, the correct row is highlighted.


Additional reference words: 3.00 3.00b VFoxWin
KBCategory: kbtool kbprb
KBSubcategory: FxtoolFormdes


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: December 25, 1995
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.