Not really.
The combo only becomes blank on your continuous form if the bound column is
zero-width.
You should be able to load several thousand records into a combo.
If you are moving beyond that, consider changing the interface to a text
box, and check you got a match before accepting.
--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users -
http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.
"B" <bien@myrealbox.com> wrote in message
news:4c886944.0311201719.78a14566@posting.google.c om...[color=blue]
> I know there are several ways to speed up combo boxes and form
> loading. Most of the solutions leave rowsource of the combo box blank
> and set the rowsource to a saved query or an SQL with a where clause
> after users typed in one or several letters/digits.
>
> My problem is as follows
>
> Most of the time I need to display form in continuous format, that
> means the combo box will appear in each record.
> For example I have a form to let users view and input component mix of
> a product.
> The main form let users browse through existing product list and add
> new product.
> The subform (continuous form) then allows them to edit (and view) the
> component structure of the currently selected product and to "build"
> new products' structure by selecting the component (componentID is a
> combobox)
>
> The component list is now several thousands and growing. If I apply
> the popular solutions to limit the rowsource of the combo, the form
> will open up without info about component structure (because the combo
> rowsources are blank). Also, after user start to type & select in a
> record combo box , combo boxes in other records will become blank.
>
> So the question is: Is there any way to speed up combo box, yet all
> combo boxes in a continuous form still display their value?
>
> Thanks in advance for any opinion
> B[/color]