how do i create a combo box that as i type enters in the table
i cant seem to do that, what set of properties lets me do that
A Combo Box "takes" data from one place - the combo's RowSource query
- and "puts" it into another, its Control Source field. Ordinarily you
don't "type" new data into a combo box; you use the keyboard or the
mouse to *select* a preexisting record from the combo's list of values
or rowsource query.
An example of a combo box might be a State combo in an address form.
Its Rowsource would be a 50 (or 78, counting Canadian provinces and US
territories) row table. The table might contain records like
AB Alberta
AK Alaska
AL Alabama
AR Arkansas
<etc>
The RowSource would be a query on this table, sorting either by
abbreviation or state name.
The Bound Column would be 1 - the abbreviation.
The Column Count might be 1 (if the user only wants to see the
abbreviation) or 2 (if they want to see the state name too, or
instead).
The ControlSource would be the State field in the address table.
John W. Vinson[MVP]