PRB: GRID.COLUMN() Gives "Property COLUMN is not Found" ErrorLast reviewed: April 30, 1996Article ID: Q130354 |
The information in this article applies to:
SYMPTOMSWhen 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] CAUSEThe Grid property is spelled Columns, not Column.
RESOLUTIONTo 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] STATUSThis behavior is by design.
MORE INFORMATIONSteps to Reproduce Behavior
for i=3 to 5 thisform.grid1.columns(i).width=10 endfor |
Additional reference words: 3.00 VFoxWin ThisFormSet
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |