Combo Box Requery

G

Guest

I have a combo box on a subform that is used to select an item from an
inventory table (row source is SQL on the table). I use the not-in-list
event to execute a macro that opens a form to add a record to the inventory
table. In the VBA code, after using the DoCmd to run the macro, I do a
requery on the combo box. The primary key for the inventory is a text field
containing the Item_No(Item_No may contain letters). The Item_No field is
the bound column. Everything works great unless the new added Item_No
becomes the "first" item - Item_No is first one if sorted. In this case, the
new added item does not appear in the combo box??? I have tried many things,
but cannot get it to work. I'm new to Access, but this is driving me crazy.
Any help would be greatly appreciated.


Thanks - Garry
 
G

Guest

Garry said:
I have a combo box on a subform that is used to select an item from an
inventory table (row source is SQL on the table). I use the not-in-list
event to execute a macro that opens a form to add a record to the inventory
table. In the VBA code, after using the DoCmd to run the macro, I do a
requery on the combo box. The primary key for the inventory is a text field
containing the Item_No(Item_No may contain letters). The Item_No field is
the bound column. Everything works great unless the new added Item_No
becomes the "first" item - Item_No is first one if sorted. In this case, the
new added item does not appear in the combo box??? I have tried many things,
but cannot get it to work. I'm new to Access, but this is driving me crazy.
Any help would be greatly appreciated.


Thanks - Garry

Additional info- Using Access 2000
Even though I don't see the new item in the combo
box, it is in the table
If I don't see the new item after adding it, then
close the form & re-open it, the new item is there.


Garry
 
W

Wayne Morgan

Rather than doing a Requery, try the built in Response argument.

Response = acDataErrAdded
will tell the combo box that the new item was added and that it should
requery itself.

Response = acDataErrContinue
will tell the combo box that you're handled the error and it doesn't need to
do anything. Use this if the user decides what they typed was a mistake and
they don't really want to add the item.
 
G

Guest

Wayne THANKS ALOT! It Works!!!

Garry



Wayne Morgan said:
Rather than doing a Requery, try the built in Response argument.

Response = acDataErrAdded
will tell the combo box that the new item was added and that it should
requery itself.

Response = acDataErrContinue
will tell the combo box that you're handled the error and it doesn't need to
do anything. Use this if the user decides what they typed was a mistake and
they don't really want to add the item.
 

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

form or query 1
Combo box list 1
Linking 1
Append Field from Continuous Form 3
Preventing Duplicate Entries 1
Search in combo box 3
Use index of a foxpro table in vb.net 1
Unupdatable Recordset 2

Top