BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
private void gridDataBoundGrid1_PrepareViewStyleInfo(object sender, GridPrepareViewStyleInfoEventArgs e) { if(e.ColIndex == 3 && e.RowIndex > 0) { //inches from the stored data to feet in the displayed data string s = e.Style.Text; if(s.Length > 0 ) { double d = double.Parse(s); d = d / 12d; e.Style.Text = d.ToString("####.0"); } } }