How to write an Excel file through X++ code In This Post you will found two code sample 1.Write data in excel through X++ code. 2. Read from an Excel through X++ code 1.Write data in excel through X++ code. static void thaAxapta_Write2Excel(Args _args) { InventTable inventTable; SysExcelApplication application; SysExcelWorkbooks workbooks; SysExcelWorkbook workbook; SysExcelWorksheets worksheets; SysExcelWorksheet worksheet; SysExcelCells cells; SysExcelCell cell; int row; ; application = SysExcelApplication...(read more)
↧