jleval
Registered User.
- Local time
- Today, 03:00
- Joined
- May 16, 2012
- Messages
- 53
I have a combo box that can filter my form and its sub form with the following code inserted in the after update event:
the code in the rowsource is this:
This is able to look up my part number in the toolMeasurement form and display it in the ToolMeasurementCutterToolMeasurement Subformsubform below.
I am able to look up specific part numbers.
I want to be able to look up by trace number as well and I put the following code:
RowSource
after update event:
Nothing happens. Any Ideas? I wish I could attach my database but it is too small. If there is anything else I need to add, let me know.
Thanks
Code:
Me.[ToolMeasurementCutterToolMeasurement Subform].Requery
the code in the rowsource is this:
Code:
SELECT DISTINCT CutterToolMeasurement.PartNumber FROM CutterToolMeasurement ORDER BY PartNumber;
This is able to look up my part number in the toolMeasurement form and display it in the ToolMeasurementCutterToolMeasurement Subformsubform below.
I am able to look up specific part numbers.
I want to be able to look up by trace number as well and I put the following code:
RowSource
Code:
SELECT DISTINCT CutterToolMeasurement.TraceNumber FROM CutterToolMeasurement ORDER BY TraceNumber;
after update event:
Code:
Me.[ToolMeasurementCutterToolMeasurement Subform].Requery
Nothing happens. Any Ideas? I wish I could attach my database but it is too small. If there is anything else I need to add, let me know.
Thanks