Hi Juan,
I just worked through this example KB article. The experience, which was not
a pleasant one, reminds me of why I have avoided Data Access Pages like the
plague. Personally, I wouldn't become too attached to them. DAP's are being
depricated in the next version of Access.
Try the following for the Northwind sample:
Create a new query. Add the Customers table. Add the CustomerID and
CustomerName fields to the QBE grid. Apply an ascending sort to the
CustomerName field. If you view the SQL statement, it should look like this:
SELECT Customers.CustomerID, Customers.CompanyName
FROM Customers
ORDER BY Customers.CompanyName;
Save the query as: qryCustomers
Open the DAP in design view. Click on View > Properties (if required to
display the properties dialog). Select the Data tab for the combo box. Change
the ListRowSource to your new qryCustomers query. Change the ListBoundField
to CompanyName. This seems to work in my tests.
Good Luck,
Tom Wickerath, Microsoft Access MVP
http://www.access.qbuilt.com/html/expert_contributors.html
http://www.access.qbuilt.com/html/search.html
__________________________________________