houstonbill
Technical User
- Nov 6, 2006
- 92
I have a question which may seem a bit dumb but again I am trying something I have not done before. Have a form with a button that opens a query with several jundred records in data sheet view. Each has a OrderID # assigned to it. I want to be able to double click on a specific order number on the query and jump to the specific form record. If I was working from a form to a form, no problem. But from a query to a form, I am not quite sure. I would think I need to do something like the below, which if working from a form/buttons, I would set an event (on double click) but I don't have that option on my query.
Dim strWere as String
strWhere = “[OrderID] =” & Me.[OrderID]
DoCmd.OpenForm “frmWrkOrder”, acFormDS, , strWhere
Dim strWere as String
strWhere = “[OrderID] =” & Me.[OrderID]
DoCmd.OpenForm “frmWrkOrder”, acFormDS, , strWhere
Dim strWere as String
strWhere = “[OrderID] =” & Me.[OrderID]
DoCmd.OpenForm “frmWrkOrder”, acFormDS, , strWhere
Dim strWere as String
strWhere = “[OrderID] =” & Me.[OrderID]
DoCmd.OpenForm “frmWrkOrder”, acFormDS, , strWhere