How can I change a column in a datagrid that originally had a date to display blank?
TaskGrid.Item(TaskGrid.CurrentRowIndex, 5) = 0
I am using column styles to set up the grid and display only columns I want to show. I have tried 0 (zero), nothing (TaskGrid.Item(TaskGrid.CurrentRowIndex, 5) = nothing), DBNull.Value, a space. All error saying 'Cannot convert to type datetime'.
TaskGrid.Item(TaskGrid.CurrentRowIndex, 5) = 0
I am using column styles to set up the grid and display only columns I want to show. I have tried 0 (zero), nothing (TaskGrid.Item(TaskGrid.CurrentRowIndex, 5) = nothing), DBNull.Value, a space. All error saying 'Cannot convert to type datetime'.