Hey!
I am trying to create an "AddNewRecord" form, but I do not want to use a txt box...
Can I use a combo box to allow for a user selection AND/OR allow a user to type text and then add a new record from their input?
E.G.
I have 3 x combo boxes, that will display data dependant upon the selection of the previous box, by using the following code:
I am having trouble allowing a user to enter their own data and then have this data written into a specific field to update the record, due to the fact that if I set the ControlSource to (in the example above) "Product"; the combobox shows "#Name?" and will not allow me to select an item from the list (although it does show the available choices!!)
I tried to add in a "beforeUpdate" for Me.AllowEdits True, but this didn't seem to work, I am prob on the wrong trakc there tho!
Any help would b appreciated...
I am trying to create an "AddNewRecord" form, but I do not want to use a txt box...
Can I use a combo box to allow for a user selection AND/OR allow a user to type text and then add a new record from their input?
E.G.
I have 3 x combo boxes, that will display data dependant upon the selection of the previous box, by using the following code:
Code:
SELECT Product
FROM tblMLSoftwareList GROUP BY Product, Manufacturer HAVING (((Manufacturer)=forms!frmNewSW!cboEntSWMan))
ORDER BY Product, Manufacturer;
I am having trouble allowing a user to enter their own data and then have this data written into a specific field to update the record, due to the fact that if I set the ControlSource to (in the example above) "Product"; the combobox shows "#Name?" and will not allow me to select an item from the list (although it does show the available choices!!)
I tried to add in a "beforeUpdate" for Me.AllowEdits True, but this didn't seem to work, I am prob on the wrong trakc there tho!
Any help would b appreciated...