Shoot - it already is a string!
I am getting so stressed out. This report is way over budget and I can't get this simplest last thing working.
Here is my dataset when I create it. Every column is a string:
Code:
DataSet dsReport = new DataSet();
DataTable dtReport = dsReport.Tables.Add();
//writeLog(string.Format("WarrantyReport: datatable created"));
dtReport.Columns.Add("Warranty Type", typeof(string));
dtReport.Columns.Add("# of Warranties", typeof(string));
dtReport.Columns.Add("# of Squares", typeof(string));
dtReport.Columns.Add("Promo $", typeof(string));
dtReport.Columns.Add("CC $", typeof(string));
dtReport.Columns.Add("Total Warranty Value", typeof(string));