BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
private void gridControl1_QueryCellFormattedText(object sender, GridCellTextEventArgs e) { if(e.Style.CellValueType == typeof(DateTime)&& e.Style.Text.Length == 0) { e.Text = "00/00/0000"; e.Handled = true; } }
//c#
this.grid.Model.QueryCellFormattedText += new GridCellTextEventHandler(Model_QueryCellFormattedText)
''vb
AddHandler Me.grid.Model.QueryCellFormattedText, AddressOf Model_QueryCellFormattedText