Hi. Have a combobox (called "Produktekategorie"
where one can chose between FM,IP,MTA,DD and Diverses. In the next combobox (called "testcbo"
one can chose between E and F when FM is chosen in the combobox "Produktekategorie". But when IP is chosen in "Produktekategorie", then in the combobox "testcbo" one should chose between G and H. And so on with MTA,DD and Diverses. Thats the code in the afterupdate event of the combobox "Produktekategorie":
Function Produktekategorie_AfterUpdate()
Select Case Me.Produktekategorie
Case "FM"
testcbo.RowSource = "E;F"
Case "IP"
testcbo.RowSource = "G;H"
Case "MTA"
testcbo.RowSource = "I;J"
Case "DD"
testcbo.RowSource = "K;L"
Case "Diverses"
testcbo.RowSource = "M;N"
End Select
End Function
It doesnt work. In the combobox "testcbo" do i have to list E,F,G,... in the row source?
Any help is gr8ly appreciated.
Chris, Zurich (Switzerland)
Function Produktekategorie_AfterUpdate()
Select Case Me.Produktekategorie
Case "FM"
testcbo.RowSource = "E;F"
Case "IP"
testcbo.RowSource = "G;H"
Case "MTA"
testcbo.RowSource = "I;J"
Case "DD"
testcbo.RowSource = "K;L"
Case "Diverses"
testcbo.RowSource = "M;N"
End Select
End Function
It doesnt work. In the combobox "testcbo" do i have to list E,F,G,... in the row source?
Any help is gr8ly appreciated.
Chris, Zurich (Switzerland)