I have several combo boxes in a form as they link to more information (for example customerproject manager, when selected would not only allow you to select the project manager, but would also then drag a whole load of information into the background of the form, such as telephone number, email address, etc, etc).
All is fine so far, however, to add new project managers I originally had a button called admin tools, that would allow you to add new values for all the different combo boxes and again, that worked fine. However, according to the powers that be, thats confusing.
What I have been instructed to do is have a list such as this:
Name1
Name2
Name3
Add New Name
where obviously the first part can be picked up with
however, How do I then add on "Add New Name" to this list?
I want to make it so when you select that it will then open the relevant form to allow the addition of the additional data.
And thats where I'm stuck!!
Help!
Thanks
All is fine so far, however, to add new project managers I originally had a button called admin tools, that would allow you to add new values for all the different combo boxes and again, that worked fine. However, according to the powers that be, thats confusing.
What I have been instructed to do is have a list such as this:
Name1
Name2
Name3
Add New Name
where obviously the first part can be picked up with
Code:
CustomerProjectManager.RowSource = "SELECT CustomerPM.CustomerProjectManager FROM CustomerPM WHERE CustomerPM.CustomerName = " & "CustomerName.Value"
I want to make it so when you select that it will then open the relevant form to allow the addition of the additional data.
And thats where I'm stuck!!
Help!
Thanks
Comment