Welcome to the forum.....
So I'm the reverse of you. ACCESS experience, just getting into SQL SERVER Express 2008 R2 BE.
On your Access form, In design view, add a comb box control. (cancel the wizard, if it appears)
Open properties.
Click on the data tab.
"Control source" is the field it combo box is bound to
"Row source" is where the data comes from.
You have two options:
Click in the "Row source" field , then on the ellipsis
Select the table/query, add the fields to the grid, close the query design window. (You can switch to SQL view here and type in the SQL here also)
Or click in the "Row source" field and
enter in the SQL to get the data:
Code:
SELECT customerPK, CustomerName FROM Customers_T ORDER BY CustomerName ASC
In the combo box properties DATA tab, set the property "Limit to List" = True
In the FORMAT tab, set the "Column count" property to the number of fields in the query.
Since the PK field is the first (bound) field, Set the "Column WIDTH" to 0 (zero - won't be displayed) and 1. It would look like:
"Column WIDTH" 0",1"
Save
Then go to form view and test the combo box.