ACC: ItemData Property Returns Value from Previous Row (170143)
The information in this article applies to:
- Microsoft Access 2.0
- Microsoft Access for Windows 95 7.0
- Microsoft Access 97
This article was previously published under Q170143 Moderate: Requires basic macro, coding, and interoperability skills.
SYMPTOMS
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.
CAUSE
The ColumnHeads property for the combo box or list box is set to Yes.
RESOLUTION
Use 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:
- Open the sample database Northwind.mdb.
- Open the Orders form in Design view.
- Set the ColumnHeads property of the CustomerID combo box to Yes.
- Add a textbox to the form with the following properties:
Form: Orders
-------------------------------------------
Text Box:
Name: ItemDataTest
ControlSource: =MyItemData("CustomerID", 0)
- On the View menu, click Code to view the form's module.
- Type the following procedure:
Function MyItemData(ctlName As String, RowIndex As Long)
On Error Resume Next
If Me(ctlName).ColumnHeads Then RowIndex = RowIndex + 1
MyItemData = Me(ctlName).ItemData(RowIndex)
End Function
- Open the form in Form view. Note that the ItemDataTest text box
contains the value "ALFKI", which is the first data item in the
CustomerID combo box.
STATUS
This behavior is by design.
REFERENCES
For more information about the ItemData property, search the Help Index for
"ItemData property."
Modification Type: | Major | Last Reviewed: | 5/9/2003 |
---|
Keywords: | kbprb KB170143 |
---|
|