S
Singinbeauty
Please see the code below. I am just about to go stir crazy if I can't figure
out why, when a selection is made, that the form doesn't open. Please save me
from the insanity!!!
Private Sub Combo140_Click()
If Me.Combo140 = "BR35" Then
[BR35Q Form]
ElseIf Me.Combo140 = "International" Then
[International Form]
ElseIf Me.Combo140 = "MBU" Then
[MBU Form]
ElseIf Me.Combo140 = "POP NW" Then
[POPNW Form]
ElseIf Me.Combo140 = "POP MW" Then
[POPMW Form]
ElseIf Me.Combo140 = "POP SW" Then
[POPSW Form]
ElseIf Me.Combo140 = "TI Domestic" Then
[TitaniumD Form]
ElseIf Me.Combo140 = "TI International" Then
[TitaniumI Form]
Else
MsgBox "No selection made.", , "Database Information"
End If
End Sub
out why, when a selection is made, that the form doesn't open. Please save me
from the insanity!!!
Private Sub Combo140_Click()
If Me.Combo140 = "BR35" Then
[BR35Q Form]
ElseIf Me.Combo140 = "International" Then
[International Form]
ElseIf Me.Combo140 = "MBU" Then
[MBU Form]
ElseIf Me.Combo140 = "POP NW" Then
[POPNW Form]
ElseIf Me.Combo140 = "POP MW" Then
[POPMW Form]
ElseIf Me.Combo140 = "POP SW" Then
[POPSW Form]
ElseIf Me.Combo140 = "TI Domestic" Then
[TitaniumD Form]
ElseIf Me.Combo140 = "TI International" Then
[TitaniumI Form]
Else
MsgBox "No selection made.", , "Database Information"
End If
End Sub