How to Use the MoverLists Object Class with a Table Field

Last reviewed: August 24, 1995
Article ID: Q135610
The information in this article applies to:
  • Microsoft Visual FoxPro for Windows, version 3.0

SUMMARY

Visual FoxPro ships with a MoverLists object in the Samples.vcx class library. The MoverLists object is used in the Controls sample application. You can use it to display information from a table field.

MORE INFORMATION

Step-by-Step Example

To use the MoverLists object to display information from a table field, follow these steps:

  1. Create a new form. On the File menu, click New, and select Form from the New dialog box.

  2. On the Form Control toolbar, click the View Classes button, and select Add. Then select Samples.vcx from the Vfp\Samples\Controls directory. Click the MoverLists button on the toolbar.

  3. Add the MoverLists class to the form. Make sure the name of the Add object to the form is MoverLists1.

  4. In the Init event procedure for the form, add this code:

    candropicon=.f. &&Do not rename or remove this one it is

                       &&used by the moverlists object
       nodropicon=.f. &&Do not rename or remove this one it is
                       &&used by the moverlists object
       SET ORDER TO contact
       SCAN
       THISFORM.moverlists1.lstsource.additem(customer.contact)
       ENDSCAN
    
    

  5. Add the customer table to the form's data enviornment by clicking the secondary (right) mouse button and selecting the Customer table from Vfp\Samples\Data directory.

  6. Save the form and run it.


Additional reference words: 3.00 VFoxWin
KBCategory: kbprg kbcode
KBSubcategory: FxprgGeneral


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: August 24, 1995
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.