请参阅下面的代码。
Private Sub dgValues_CellLeave(sender As System.Object, e As System.Windows.Forms.DataGridViewCellEventArgs) Handles dgValues.CellLeave
For i As Integer = 0 To dgValues.Columns.Count - 1
If Not String.IsNullOrEmpty(dgValues.Rows(0).Cells(i).Value.ToString()) Then
dgValues.Rows(0).Cells(i).Value = FormatCurrency(dgValues.Rows(0).Cells(i).Value).ToString()
End If
Next
End Sub
出于某种原因,我收到错误。而对于我的生活来说,这可能是最简单的事情,但由于某种原因我今天无法找到它。
*类型
的未处理异常'System.NullReferenceException'
发生在MasterPricing.exe中 其他信息:
对象引用未设置为对象的实例
有什么想法吗?