After a week on holidays I now face the monster again
.
I have a form (let's called it "FORM1"). On the form is a combobox (COMBO1). Combo1 picks up a list from "tblProjectMaster".
SELECT tblProjectMaster.ProjectID, tblProjectMaster.[Project #], tblProjectMaster.[Project Title] FROM tblProjectMaster ORDER BY tblProjectMaster.[Project #];
So - it shows me the Project # and Project Title, but actually reads the ProjectID (which is the primary key).
I want to choose a project from the combo box, and then click the button (Click1) next to it to open another form (Form2) that shows me the project details. I have chosen to do it this way because on a bad day I know you can pick the wrong item on a drop box way too many times; and it gets very old and very frustrating, very quickly.
Issues:
When I click on the project I want on the combo box it doesn't choose it. The list stays dropped down, and project isn't even highlighted. I assume I need code for "on click" - but unsure what exactly.
Secondly, how do I bind the button to the choice in the combo box?
Thanks for your help!

I have a form (let's called it "FORM1"). On the form is a combobox (COMBO1). Combo1 picks up a list from "tblProjectMaster".
SELECT tblProjectMaster.ProjectID, tblProjectMaster.[Project #], tblProjectMaster.[Project Title] FROM tblProjectMaster ORDER BY tblProjectMaster.[Project #];
So - it shows me the Project # and Project Title, but actually reads the ProjectID (which is the primary key).
I want to choose a project from the combo box, and then click the button (Click1) next to it to open another form (Form2) that shows me the project details. I have chosen to do it this way because on a bad day I know you can pick the wrong item on a drop box way too many times; and it gets very old and very frustrating, very quickly.
Issues:
When I click on the project I want on the combo box it doesn't choose it. The list stays dropped down, and project isn't even highlighted. I assume I need code for "on click" - but unsure what exactly.
Secondly, how do I bind the button to the choice in the combo box?
Thanks for your help!