Hi,I am working with VB.NET 2005 and Sql server 2005. I have a date field on my table called RECEIVEDDATE, this field is populated by a textbox within a datagridview on my form. However, sometimes this field is empty and sql generates 01/01/1900, the next time a user opens the datagridview, the date 01/01/1900 appears instead of the blank space. This is how I coded in VB.net before saving the cells from the datagridview. Could this be the root cause of the date set to 01/01/1900.If e.ColumnIndex = 3 Then DgvReturns.CommitEdit(DataGridViewDataErrorContexts.Commit) Dim isChecked As Boolean = DirectCast(DgvReturns.Item(e.ColumnIndex, e.RowIndex).Value, Boolean) If isChecked Then DgvReturns.Item("PayStatus", e.RowIndex).Value = "No Pay" DgvReturns.Item("ReceivedDate", e.RowIndex).Value = "" Else DgvReturns.Item("PayStatus", e.RowIndex).Value = "" End If End IfHow can I go round this problem? Thanks