VB.NET错误。用于转换为货币的System.NullReferenceException

时间:2016-05-20 14:22:51

标签: vb.net datagridview runtime-error

请参阅下面的代码。

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中 其他信息:

  

对象引用未设置为对象的实例

有什么想法吗?

0 个答案:

没有答案