gpt4 book ai didi

mysql - DataGridView CellValidating 在新行上返回空字符串

转载 作者:行者123 更新时间:2023-11-29 21:42:02 28 4
gpt4 key购买 nike

我的DataGridView代表一个可以编辑的MySQL表。但是,第一列需要遵循我需要验证的严格模式。我使用以下代码来执行此操作:

Private Sub dg_Temp_CellValidating(sender As Object, e As DataGridViewCellValidatingEventArgs) Handles dg_Temp.CellValidating
Dim strActiveCell = dg_Temp(e.ColumnIndex, e.RowIndex).Value.ToString
If e.ColumnIndex = 0 Then
If Regex.IsMatch(strActiveCell, "M[0-9]{3}[a-z]{1}[A-Z]{1}") = False Then
e.Cancel = True
MsgBox("Invalid material id structure." & Chr(13) & "Only the following syntax is legal: M000aA" &
Chr(13) & "Entered: " & strActiveCell)
End If
ElseIf strActiveCell = vbNullString Then
dg_Temp(e.ColumnIndex, e.RowIndex).Value = ""
End If
End Sub

但是,在编辑现有行时,一切正常。但是,当创建新行时,dg_Temp(e.ColumnIndex, e.RowIndex).Value.ToString 不返回任何内容。我错过了什么?

最佳答案

使用事件参数e.FormattedValue获取正在验证的单元格的当前值。

g_Temp(e.ColumnIndex, e.RowIndex).Value 似乎要等到 CellValidating 事件之后才设置。

关于mysql - DataGridView CellValidating 在新行上返回空字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34412553/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com