Ok, not sure if this is what you want. I'm assuming you want to list the components in the combo box named "Component" based on the selected value in the combo box named "Equipment Type". The form I'm referring to is called "Downtime Event Entry".
In the property sheet of the "Component" combo box, under the Format tab, change the Column Count to 3, Column Widths to 0":0":1"
Under the Data tab, delete the Row Source.
In the code behind for Equipment_Type_AfterUpdate, add
Code:
Me.Component.RowSource = "SELECT ID, Type, Components FROM Component" & _
" WHERE Type = " & Chr(34) & Me.Equipment_Type.Column(1) & Chr(34)
Me.Component.Requery
Previously, the query is trying to compare the Type with the Components, so nothing is returned. There may be further errors in other combo boxes, which you will need to solve them.