ControlSource is the name of the table column in which any user record will be saved.
RowSource is where you enter the name of a saved request or a manual request entered directly into this field, which is used to provide a list of available drop-down options for the combo box.
RowSourceType must be set to Table / Query, which is based on the above RowSource method.
Now, to fix the problem, only display what you are starting to enter (i.e., "Allow AutoCorrect" in the Property Sheet> Other ) or have already saved for this record, without any other options appearing after clicking the drop button down:
- In the Design view, click the appropriate combo box.
- Property sheet> Format> Number of columns = set the required number of columns to display in the drop-down list.
- Property sheet> Format> Column widths = set the desired column width in the drop-down list.
- Property sheet> Format> List width = set the desired width of the drop-down list itself.
- Property sheet> Data> Associated column = set the column of the query table (i.e. 1 for ID and 2 for list parameters if you have only two entries)
Note. If your desired drop-down column options are two rather than one column (makes it easier to work with BAT), make the following changes:
- Property sheet> Format> Number of columns = set the required number of columns to two.
- Property sheet> Format> Column widths = add two records 0 ", 1", which means that the identifier field is not displayed (0 "), and the parameter field is in inches.
The easiest way to sort this at the beginning is to look at the names of the column headers to find out what you are viewing, thereby doing the following: Property sheet> Format> Column heads = set to yes. At least you will know what is displayed and whether you are on the right track.
source share