I can't manage to work in VB2010...

Me.TextBox3.Text = VBTestDataSet.Invoices.Compute("sum(W)", String.Empty)
is not working; Error: "An error occurred creating the form. See Exception.InnerException for details. The error is: Conversion from type 'DBNull' to type 'String' is not valid."

Me.TextBox3.Text = Invoices.Compute("sum(W)", String.Empty)
is not working; Error : "An error occurred creating the form. See Exception.InnerException for details. The error is: Conversion from type 'DBNull' to type 'String' is not valid."

I must change <DBNull> to 0 ? Where ?