hi,
I have three tables tblstatustype, tblpargroups, tblmedgroups.
I have set up the following code for a cascading combo box
Private Sub Statustype_AfterUpdate()
On Error Resume Next
Select Case cboStatus_type.Value
Case "Parliamentary"
cboSubstatus.RowSource = "tblpargroups"
Case "Media"
cboSubstatus.RowSource = "tblmedgroup"
End Select
End Sub
When the parliamentary or media options are chosen i need the substatus combo box to kick in with the relevant selections from the table.
Help. it doesnt seem to work, any ideas anyone???
thanks in advance,
help is much apreciated
I have three tables tblstatustype, tblpargroups, tblmedgroups.
I have set up the following code for a cascading combo box
Private Sub Statustype_AfterUpdate()
On Error Resume Next
Select Case cboStatus_type.Value
Case "Parliamentary"
cboSubstatus.RowSource = "tblpargroups"
Case "Media"
cboSubstatus.RowSource = "tblmedgroup"
End Select
End Sub
When the parliamentary or media options are chosen i need the substatus combo box to kick in with the relevant selections from the table.
Help. it doesnt seem to work, any ideas anyone???
thanks in advance,
help is much apreciated