I've made a database for my contacts. On the top of my main form (names) I put a combobox where the row source is :
that will show me a list of ID name and last name of each record (each row of that list is a record). I want everytime that I click on a row of that list to focus on that record.
Code:
SELECT [names].[ID] , [names].[firstname] , [names].[lastname] FROM [names] ORDER BY [lastname];
Comment