我有一个 datagridview 列,我希望防止用户将单元格留空或输入负数。我发现当我更改 if then 语句的顺序以首先进行空白验证检查时,代码有效,但不适用于否定验证,反之亦然。那么为什么代码只适用于第一个 if 语句而忽略第二个呢?我非常感谢任何人对此提供的任何帮助或建议。:)
If (e.ColumnIndex = 0) Then 'checking value for column 1 only
Dim cellData As Integer
If (Int32.TryParse(DataGridView1.Rows(e.RowIndex).Cells(e.ColumnIndex).Value, cellData)) Then
If cellData < 0 Then
MessageBox.Show("Negative Numbers Not Allowed") 'This prevents negative numbers
DataGridView1.Rows(e.RowIndex).Cells(e.ColumnIndex).Value = "Name"
Exit Sub ' Again this a default value I want supplied back to the datagridivewcell
End If
Else
Dim testData As String = DataGridView1.Rows(e.RowIndex).Cells(e.ColumnIndex).Value
If (String.IsNullOrEmpty(testData)) Then
MessageBox.Show("Cannot Be Empty")
DataGridView1.Rows(e.RowIndex).Cells(e.ColumnIndex).Value = "Name" ' This is a default value that I want to supply after the message box
End If
End If
End If