我有两个组合框..我有一个添加按钮..如果两个组合框都有值,那么只有
我想将我的组合框项目添加到网格视图中..所以我给出了这样的验证:
If (cmbside.Text = " " And cmbDamage.Text = " ") Then
MsgBox("Please Select Both Item", MessageBoxIcon.Information)
End If
所以这种情况如果我保持一个组合框值空白,
,然后另一个值是添加到网格视图。
我的代码出了什么问题
答案 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