hi,
i have three combo boxes - combo0/country, combo2/state, combo4city - populated by queries:
SELECT [MyData].[Country]
FROM MyData
GROUP BY [country];
SELECT MyData.[St-Prv], MyData.Country
FROM MyData
GROUP BY MyData.[St-Prv], MyData.Country
HAVING (((MyData.Country)=[forms]![form1]![combo0]));
SELECT MyData.CITY, MyData.[St-Prv], MyData.[ZIP-Postal], MyData.Country
FROM MyData
WHERE (((MyData.[St-Prv])=[forms]![form1]![combo2]));
i want to update content of combo boxes for state/city based on content of combo box for country/state. right now it works only at start (first time), after that content doesn't change.
thanks
i have three combo boxes - combo0/country, combo2/state, combo4city - populated by queries:
SELECT [MyData].[Country]
FROM MyData
GROUP BY [country];
SELECT MyData.[St-Prv], MyData.Country
FROM MyData
GROUP BY MyData.[St-Prv], MyData.Country
HAVING (((MyData.Country)=[forms]![form1]![combo0]));
SELECT MyData.CITY, MyData.[St-Prv], MyData.[ZIP-Postal], MyData.Country
FROM MyData
WHERE (((MyData.[St-Prv])=[forms]![form1]![combo2]));
i want to update content of combo boxes for state/city based on content of combo box for country/state. right now it works only at start (first time), after that content doesn't change.
thanks