Form

  • Thread starter Thread starter Christy
  • Start date Start date
C

Christy

I have an Inventory form with a list box named Type. What
I am trying to do is when I double click on this record I
want another form called Type that has the field type to
show up so I can enter the type such as monitor and it
will be added to the list box in my inventory form. I
found an example in the access database wizards called
Inventory control then open the Products form and doube
click on the category field and it allows you to enter in
a category. I can not figure out how to do that. My VB
code my be wrong. Any suggestions?

Thanks
 
Christy,

For updating your list use Form_Inventory.Type.Requery when you close
(event) Form_Type, for example. What Requery does is update your SELECT
query where your list box Type takes data.

Alberto (Spain)
 
Back
Top