L
longIT
Guest
I'm trying to insert a query into an If Statement. The user will pick the make of the car & then the models of that make should appear below it. The code I'm using at the moment is
If Make = "AC" Then
Model = AC Query;
End If
End Sub
I've also tried using
If Make = "AC" Then
Model = "Ace, Cobra"
End If
But this produces
Ace, Cobra in the model combo box and not a list.
Hope someone can help me on this.
If Make = "AC" Then
Model = AC Query;
End If
End Sub
I've also tried using
If Make = "AC" Then
Model = "Ace, Cobra"
End If
But this produces
Ace, Cobra in the model combo box and not a list.
Hope someone can help me on this.