i need to show nothing for specific date values in a grid. when i set the cell value = "" it displays the value as 01/01/0001. is there anyway to show a blank datetime field? thanks
The DataTime data type in DotNet is a struct, so it can't be set to null or a string. Your data source might allow you to set the value to DBNull.Value, but that depends on the data source.
If that doesn't help, you would probably need to use a DataFilter or DrawFilter to display a blank in the cell.
u were right. i set the value = System.DBNull.Value where i needed and it was exactly what i needed. thanks alot i appreciate it