DOCUMENT:Q130354  11-FEB-2000  [foxpro]
TITLE   :PRB: GRID.COLUMN() Gives "Property COLUMN is not Found" Error
PRODUCT :Microsoft FoxPro
PROD/VER:WINDOWS:3.0
OPER/SYS:
KEYWORDS:kbcode

======================================================================
-------------------------------------------------------------------------------
The information in this article applies to:

 - Microsoft Visual FoxPro for Windows, version 3.0 
-------------------------------------------------------------------------------

SYMPTOMS
========

When you issue a command similar to the following to change the property of Grid
Column(s), you receive an "Property COLUMN is not found." error message.

      ThisForm.Grid1.Column(<n>).<Property>[=Setting]

CAUSE
=====

The Grid property is spelled Columns, not Column.

RESOLUTION
==========

To access the properties of a particular column in a grid, use the Columns
property of the grid as in this example"

      ThisForm.Grid1.Columns(<n>).<Property>[=Setting]

STATUS
======

This behavior is by design.

MORE INFORMATION
================

Steps to Reproduce Behavior
---------------------------

1. Create a form.

2. Add a grid to the form that has five columns.

3. Add a command button to the form, and place the following code in its click
   event:

      for i=3 to 5
         thisform.grid1.column(i).width=10
      endfor

4. Run the screen, and click the command button button to see the "Unknown
   Member Column" error message.

To make the click event code work, change the code to this:

      for i=3 to 5
         thisform.grid1.columns(i).width=10
      endfor

Additional query words: VFoxWin ThisFormSet

======================================================================
Keywords          : kbcode 
Technology        : kbVFPsearch kbAudDeveloper kbVFP300
Version           : WINDOWS:3.0

=============================================================================

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.

Copyright Microsoft Corporation 2000.