PRB: Values Are Not Updated in Each Column When Changing Rows

Last reviewed: January 8, 1996
Article ID: Q141987
The information in this article applies to:
  • Microsoft Visual FoxPro for Windows, versions 3.0 and 3.0b

SYMPTOMS

Changing the ActiveRow of a grid does not update the values of the object in every column.

CAUSE

Only the object that receives the focus will have an updated value.

WORKAROUND

  1. Create a new property of the form named oldrow and assign an initial value of -1.

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

    ******* Begin AfterRowColChange ********* IF This.ActiveRow<>Thisform.oldrow

          Thisform.oldrow=This.ActiveRow
          FOR lnI=1 TO This.ColumnCount
    
             lcsource=This.Columns(lnI).ControlSource
             IF TYPE(lcsource)<>"G" AND TYPE(lcsource)<>"M"
                This.Columns(lnI).SetAll("VALUE",&lcsource)
             ENDIF
          ENDFOR
       ENDIF
       ******** End AfterRowColChange *************
    
    

STATUS

This behavior is by design.

MORE INFORMATION

Steps to Reproduce Behavior

  1. Create a new form.

  2. Add Vfp\Samples\Data\Employee.dbf to the DataEnvironment of the form.

  3. Create a grid by dragging the table from the DataEnvironment to the form.

  4. Run the form.

  5. Open the Debug window, and type the following on the left side of the Debug window:

    _Screen.Forms(1).Grid1.Column1.Text1.Value _Screen.Forms(1).Grid1.Column2.Text1.Value _Screen.Forms(1).Grid1.Column3.Text1.Value _Screen.Forms(1).Grid1.Column4.Text1.Value

  6. Select a cell inside the first column of the grid.

  7. Only Grid1.Column1.Text1.Value is updated in the debug window. None of the other values are updated.


Additional reference words: 3.00 3.00b VFoxWin
KBCategory: kbprg kbprb
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: January 8, 1996
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.