This question is locked. New answers and comments are not allowed.
using (Stream stream = dialog.OpenFile())
{
GridViewExportOptions exportOptions = new GridViewExportOptions();
exportOptions.Format = format;
exportOptions.Encoding = Encoding.UTF8;
exportOptions.ShowColumnFooters = false;
exportOptions.ShowColumnHeaders = true;
exportOptions.ShowGroupFooters = false;
this.RadReport.Export(stream, exportOptions);
}
when the value "001" in the gridview,after export it become "1",how to solve it?
Can you give me some example? The problem is the same to the print event!
{
GridViewExportOptions exportOptions = new GridViewExportOptions();
exportOptions.Format = format;
exportOptions.Encoding = Encoding.UTF8;
exportOptions.ShowColumnFooters = false;
exportOptions.ShowColumnHeaders = true;
exportOptions.ShowGroupFooters = false;
this.RadReport.Export(stream, exportOptions);
}
when the value "001" in the gridview,after export it become "1",how to solve it?
Can you give me some example? The problem is the same to the print event!