在vb.net中的if条件中使用和运算符

时间:2013-10-30 07:36:01

标签: vb.net

我有两个组合框..我有一个添加按钮..如果两个组合框都有值,那么只有

我想将我的组合框项目添加到网格视图中..所以我给出了这样的验证:

 If (cmbside.Text = " " And cmbDamage.Text = " ") Then
            MsgBox("Please Select Both Item", MessageBoxIcon.Information)
        End If

所以这种情况如果我保持一个组合框值空白,
,然后另一个值是添加到网格视图。

我的代码出了什么问题

2 个答案:

答案 0 :(得分:1)

也许是关于“”......

If cmbside.Text = "" And cmbDamage.Text = "" Then
    MsgBox("Please Select Both Item", MessageBoxIcon.Information)
End If

If cmbside.SelectedIndex = -1 And cmbDamage.SelectedIndex = -1 Then
    MsgBox("Please Select Both Item", MessageBoxIcon.Information)
End If

答案 1 :(得分:0)

如果要在gridview中添加两个组合框值,请检查这样的条件

 If ComboBox1.Text.Trim = String.Empty OrElse ComboBox2.Text.Trim = String.Empty Then
            MsgBox("Please Select Both Item", MessageBoxIcon.Information)
        End If