ACC: ItemData Property Returns Value from Previous RowLast reviewed: June 16, 1997Article ID: Q170143 |
The information in this article applies to:
SYMPTOMSModerate: Requires basic macro, coding, and interoperability skills. The ItemData property of a combo box or list box does not return the value from the row that you specified in the rowindex argument; instead, it returns the value from the previous row. This article assumes that you are familiar with Visual Basic for Applications and with creating Microsoft Access applications using the programming tools provided with Microsoft Access. For more information about Visual Basic for Applications, please refer to your version of the "Building Applications with Microsoft Access" manual. NOTE: Visual Basic for Applications is called Access Basic in Microsoft Access version 2.0. For more information about Access Basic, please refer to the "Building Applications" manual.
CAUSEThe ColumnHeads property for the combo box or list box is set to Yes.
RESOLUTIONUse a condition to check the ColumnHeads property. If it is set to Yes, add 1 to the row index. The following example demonstrates how to add 1 to the row index if the ColumnHeads property is set to Yes and then to pass it to the ItemData property:
STATUSThis behavior is by design.
MORE INFORMATIONThe ItemData property returns the data in the bound column of the specified row in a combo box or list box. Rows in combo and list boxes are indexed starting with zero. For example, to return the item in the sixth row of a combo box, you would specify 5 for the ItemData property's row index. If the ColumnHeads property for a combo box or list box is set to Yes, the column name is displayed as the first item in the list. Microsoft Access treats this row as the first data item instead of the first row in the control's row source.
Steps to Reproduce Behavior
REFERENCESFor more information about the ItemData property, search the Help Index for "ItemData property." |
Keywords : FmsCmbo kbusage
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |