不低于“价值”vb.net

时间:2016-10-11 12:16:54

标签: vb.net logical-operators

我想添加另一个逻辑条件。这是“不低于1”。

If DataGridView1.Item(6, i).Value <= 90 Then

1 个答案:

答案 0 :(得分:1)

“不小于”你的意思是“大于或等于?”即,'&gt; ='

所以:

If DataGridView1.Item(6, i).Value <= 90 And DataGridView1.Item(6, i).Value >= 1 Then