I have two combobox..and i have a add button..if both combobox having value then only
i want to add my combobox item to grid view ..so i given validation like this:
If (cmbside.Text = " " And cmbDamage.Text = " ") Then
MsgBox("Please Select Both Item", MessageBoxIcon.Information)
End If
so this case if if i keep one combobox value blank ,
,then also another value is adding to grid view.
what is wrong with my code