I am able to export grid data to excel but right now i am saving the file first and then opening the file using the code below.
Dim FilePath As String
FilePath = Environment.GetFolderPath(Environment.SpecialFolder.Desktop) & "\Report1_" & DateTime.Now.ToString("yyyymmddHHmmssff") & ".xls"
UltraGridExcelExporter.Export(GrdInfraData, FilePath)
Process.Start(FilePath)
Hi Amit,
As far as I know, this is not supported by Microsoft Excel. It requires an Excel file in order to display it.
Thanks for the info Mike!