Hi,is it possible to export data in Excel or Pdf from my UltraGrid for WinForms?
Thanks very much.
Luigi
Hi Luigi,
Yes.
To export to Excel, you would use the UltraGridExcelExporter component.
For PDF or XPS, you would use the UltraGridDocumentExporter component.
Thank you Mike, it works fine.
A little addings:
In my PDF export I have this code:
private void pDFToolStripMenuItem_Click(object sender, EventArgs e) { ultraGridDocumentExporter1.Export(ultraGridBrani, @"C:\ExportBrani.pdf", GridExportFileFormat.PDF); }
but the Grid it save the file without give me any warning that the pdf file is in C drive. How can I force to tell the user that the Pdf is saved in this path and with this name?