How to Highlight the Entire Row in Grid When User Clicks

Last reviewed: October 18, 1996
Article ID: Q130458
The information in this article applies to:
  • Microsoft Visual FoxPro for Windows, versions 3.0, 5.0
  • Microsoft Visual FoxPro for Macintosh, version 3.0b

SUMMARY

In FoxPro version 2.x, you can't issue a browse and have the entire row selected when a user clicks. In Visual FoxPro, however, you can create a grid, and have the entire row selected when a user clicks. This article shows you how.

MORE INFORMATION

NOTE: You can also use this technique to make the current record in the grid remain highlighted after the focus is set to another object on the form.

Step-by-Step Example

  1. Create a new form by using the Form Designer.

  2. Bring up the Data Environment for the form by choosing Data Environment from the View menu. Select Add to add the customer table located in the C:\VFP\SAMPLES\MAINSAMP\DATA directory into the data environment. Drag the customer table from the data environment, and drop it onto the form to create a grid object.

  3. Place the following code in the grid's INIT event:

    PUBLIC grno grno = RECNO() THIS.setall("Dynamicbackcolor", ;

            "IIF(RECNO()=grno,RGB(64,128,128),RGB(255,255,255))","Column")
    
    

  4. Place the following code in the grid's AfterRowColChange event:

    LPARAMETERS nColIndex grno = RECNO() THIS.Refresh()

  5. Run the form, and click different rows. You will see the selected row's backcolor is in dark green color.


Additional reference words: 5.00 VFoxMac 3.00b 3.00 VFoxWin
KBCategory: kbprg kbcode
KBSubcategory: FxprgGrid


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: October 18, 1996
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.