Hi.Have a form with a combo "cboproduktekategorie". Based on the selection in this combo i want to become another combo (either "cbofm","cboip","cbomta","cbodd" or "cbodiv"
visible. i have set the five combos' visible property to false and placed the following code in the afterupdate event of combo "cboproduktekategorie". but neither of the five combos appear, independent of what i select in "cboproduktekategorie". here's the code:
Private Sub cboproduktekategorie_AfterUpdate()
Select Case Me.cboproduktekategorie
Case "FM"
Me.cbofm.Visible = True
Case "IP"
Me.cboip.Visible = True
Case "MTA"
Me.cbomta.Visible = True
Case "DD"
Me.cbodd.Visible = True
Case "Diverses"
Me.cbodiv.Visible = True
End Select
End Sub
Think its an easy one - but i'm stuck. Any help greatly appreciated. Thanks. Chris
Private Sub cboproduktekategorie_AfterUpdate()
Select Case Me.cboproduktekategorie
Case "FM"
Me.cbofm.Visible = True
Case "IP"
Me.cboip.Visible = True
Case "MTA"
Me.cbomta.Visible = True
Case "DD"
Me.cbodd.Visible = True
Case "Diverses"
Me.cbodiv.Visible = True
End Select
End Sub
Think its an easy one - but i'm stuck. Any help greatly appreciated. Thanks. Chris