Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Finding a specific Record in Inventory

Status
Not open for further replies.

dragonmanUSMC

IS-IT--Management
Dec 10, 2004
31
Greetings all, I have a DB that is used to process customer orders. When the user is filling out the order there is a subform with the order details. (Product being ordered) The user will select a product from the drop down list. If the user double clicks the drop down field it will open the Inventory Module. What I would like to be able to do is double click the field and go to the inventory module and see the product they have selected. So the order will go like this
1. They select the product
2. They double click the field to go to the inventory module and see all the details of that product. Price, Qty, Desc., etc...

Thank you in advance for any assistance.
 
First do not use the term module it is confusing, it means something very different. A module is a block of code.
How do you want the interface? If it is opening another "Pop Up" form then something like. Look at the openform action in the help file.

Private Sub cmbo_DblClick(Cancel As Integer)
DoCmd.OpenForm "formName", , , "[fldName] = " & Me.productID
End Sub

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top