superfly5203
Registered User.
- Local time
- Yesterday, 21:00
- Joined
- Apr 5, 2016
- Messages
- 43
Hello,
I'm working on a access 2010 database, and I have one form that just about all the information for the database is entered into. I have a couple combo boxes for name of people, and one for Contract name. When I made the boxes, I linked the ones for names to the first_name field, in their corresponding tables. I added some code in the properties tab to select the last name too so you can see both the first and last name. Here is that code:
I've run into a problem now where I can't add names to the combo box. I have the properties set to allow value list edits - yes, list items edit Form - my entry form. There is another one that says limit to list, and i can't change it from yes to no. There is the icon to update the list at the bottom, but when i click on it it doesn't bring up that pop up where I can add new names.
Does this issue have to do with the way I'm showing both first and last names? I can't change my contract name one either, and thats only pointing to one field. I do get an error talking about adjusting the column width, but I have no idea what that is talking about.
Thanks for any help.
I'm working on a access 2010 database, and I have one form that just about all the information for the database is entered into. I have a couple combo boxes for name of people, and one for Contract name. When I made the boxes, I linked the ones for names to the first_name field, in their corresponding tables. I added some code in the properties tab to select the last name too so you can see both the first and last name. Here is that code:
Code:
SELECT [tblCS].[CSID], [tblCS].[CS_First_Name] & " " & [tblCS].[CS_Last_Name] FROM tblCS;
I've run into a problem now where I can't add names to the combo box. I have the properties set to allow value list edits - yes, list items edit Form - my entry form. There is another one that says limit to list, and i can't change it from yes to no. There is the icon to update the list at the bottom, but when i click on it it doesn't bring up that pop up where I can add new names.
Does this issue have to do with the way I'm showing both first and last names? I can't change my contract name one either, and thats only pointing to one field. I do get an error talking about adjusting the column width, but I have no idea what that is talking about.
Thanks for any help.