从DataGridView中检测日期的空值还是空值?VB网


        Dim datagrid1 As Date = Nothing
        Dim remaning1 As DateTime = DateTime.Now
        Dim answer1 As Integer = Nothing

        datagrid1 = DataGridView2.Rows(0).Cells(4).Value

如果DataGridView值为空,则有一个错误。如何纠正这个问题。

检查值是否为null并相应地设置值:

            If Not IsDBNull(DataGridView2.Rows(0).Cells(4).Value) Then
                datagrid1.Value = DataGridView2.Rows(0).Cells(4).Value
            End If

这个问题有点不清...但是我想您想检查datagridview中的值是否有效日期...如果是,请使用以下

If TypeOf(DataGridView2.Rows(0).Cells(4).Value) Is Date Then
   'Logic here...
End If

相关内容

  • 没有找到相关文章

最新更新