I have 2 ComboBoxes that I want to make sure have text when the user clicks on the continue button. I want to do this client side. I have
If document.thisForm.cboEngSerNo.Text = "" then
Msgbox("You have not selected an Engine!"
ElseIf document.thisForm.cboTrnSerNo.Text = "" Then
MsgBox("You have not selected a Transmission!"
End If
I get the first MsgBox, but I can't figure out how to get the second? Rob
Just my $.02.
If document.thisForm.cboEngSerNo.Text = "" then
Msgbox("You have not selected an Engine!"
ElseIf document.thisForm.cboTrnSerNo.Text = "" Then
MsgBox("You have not selected a Transmission!"
End If
I get the first MsgBox, but I can't figure out how to get the second? Rob
Just my $.02.