> 1. What is SQL string for the second combobox's rowsource ?
>
[quoted text clipped - 13 lines]
> > the selection) my problem is it takeslonger than ususal to run the
> > query.
My first question was: 1. What is SQL string for the second combobox's
rowsource ?
Your answer, " the second combo box row sourceis based on a query that
genrates a
list of items", doesn't really answer the question. What, specifically, is
the wording of that query? In other words, if you built the query in the
query design view, open that query, switch to SQL view, and paste the SQL
into your response.
My second question, "Where are the tables for the above SQL query stored?"
means, are the tables stored in the front end, or the back end. You didn't
answer this either. For instance, if your combobox rowsource is "SELECT
street_id, str_name FROM su_street ORDER BY str_name", then is table
su_street in the BE? Because if it is, that could be the problem,
especially if table su_street contains 7000 records which your combobox has
to fetch from the BE every time you requery the combobox.
>There are more than 7k of records in the tables queried.
So is there more than one table in the query? Post the SQL string (the
query)(the SELECT statement).
Darryl Kerkeslager
> the second combo box row sourceis based on a query that genrates a
> list of items based on the user selection. As I have sait thedatabse
[quoted text clipped - 20 lines]
> > > the selection) my problem is it takeslonger than ususal to run the
> > > query.