The information in this article applies to:
SYMPTOMSWhen you search for "Column," then "Column Property" using the Microsoft Access Help menu, some of the remarks are not correct. RESOLUTIONWhen you use the Column property to reference a specific column in a combo box or list box, use Column(0) to refer to the first column, Column(1) to refer to the second column, and so on. In other words, the numbering begins with 0, not 1. Incorrect Statement in the Column Property Help TopicYou can use the Column property to refer to a particular column in a multiple-column combo box or list box. Use 1 to refer to the first column, 2 to refer to the second column, and so on.Corrected VersionYou can use the Column property to refer to a particular column in a multiple-column combo box or list box. Use 0 to refer to the first column, 1 to refer to the second column, and so on.STATUSThis behavior no longer occurs in Microsoft Access version 2.0. MORE INFORMATION
To create a multiple-column combo box, set the RowSource property to
include more than one column, and set the ColumnCount property to a number
greater than one. To refer to each column in the combo box, use the Column
property and include a reference number. Here is the syntax:
Replace the pound sign (#) with the reference number. The reference number is 0 for first column in the control, 1 for the second column, 2 for the third, and so on. Here is a step-by-step example that demonstrates how to use the Column property reference number correctly:
Additional query words: properties controls
Keywords : kbusage DcmOthr |
Last Reviewed: March 19, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |