R
Rpettis31
This is not working for some reason.
Private Sub cboCountry_AfterUpdate()
On Error Resume Next
Select Case cboIssueCategory.Value
Case "Cosmetic" & cboProductType="Frame"
cboIssueType.RowSource = "tblFrameCosmetic"
End Select
End Sub
Not sure if I am doing the after event right. This is a drop down that
displays the category it will then look back and see the product type and
then show the table with the Issues list for the type and category.
Private Sub cboCountry_AfterUpdate()
On Error Resume Next
Select Case cboIssueCategory.Value
Case "Cosmetic" & cboProductType="Frame"
cboIssueType.RowSource = "tblFrameCosmetic"
End Select
End Sub
Not sure if I am doing the after event right. This is a drop down that
displays the category it will then look back and see the product type and
then show the table with the Issues list for the type and category.