Hi,
i created a workbook using your infragistics controls(infragistics.documents.excel.workbook). But is there any way to convert it to a standard workbook? I.e
dynamic excel = automationfactory.createobject("Excel.Application");
dynamic workbook = excel.workbooks;
workbook.close()
i use this to access the com api. the workbook.close() is a com method to access excel. Is there a way to convert your infragistics workbook to something like this?
There is no direct way to convert, but you can easily save the workbook to a file using one of the Workbook.Save(...) methods and then use Excel interop to open the file.