Limit to List

I

Ivor Williams

I have a form frmOrder with an unbound combo box cboPartNo, with the
Limit to List property set to Yes. In the "On Not in List" event, I've added
the following:

DoCmd.OpenForm "frmNewPart", , , , , acDialog
Response = acDataErrAdded

When I enter a new part number in the combo box, the form frmNewPart opens
as expected, but when I try to close the form, I get the following message:

"The text you entered isn't an item in the list.
Select an item from the list, or enter text that matches one of the listed
items."

Then the frmNewPart form closes without updating the information in the
frmOrder form.

I've tried changing the Limit to List" property to No, but it didn't solve
the problem.

Ivor
 
A

Allen Browne

Which is the Bound Column of the combo?
Is this the display column?

When the combo's NotInList event fires, the NewData argument passes the
value the user typed into the combo. If this is not the value that gets
stored in the Bound Column, your approach won't work.

For example, a typical combo has properties like this:
Control Source CategoryID
RowSource SELECT CategoryID, CategoryName FROM tblCategory;
Bound Column 1
Column Widths 0
Then the user enters a new category (text), which is *not* what goes in the
CategoryID column (number.) If this is what you are doing, the NotInList
event will not work. You need to provide another mechanism for adding new
items, such as a command button beside the combo, or its DblClick event.

Access 2007 allows you to specify the form to use to add items to the
combo's source table. You can then right-click the combo to add items.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

NotInList code 1
Limit values in combo box 1
referencing a value 5
NotInList 3
NotInList 1
Limit to list and default for combobox 2
VB Code for Drop Down List 2
Limit items in combo box 2

Top