Hi,
I'm trying to import data to ax using EXcel.i still getting the error message :
The number of arguments provided is different from the number of arguments accepted by the method.
Update post :
The solution is :
boolean importLines()
{
SysExcelApplication application = SysExcelApplication::construct();
SysExcelWorkBooks workBooks = application.workbooks();
SysExcelWorkSheets workSheets;
SysExcelWorkSheet workSheet;
SysExcelCells cells;
// the solution is puting the bellow line code after initializing SysExcelApplication
application.displayAlerts(false);
//.... code
//and In the end
application.workbooks().close();
application.quit();
application.finalize();
application = null;
}
*This post is locked for comments
I have the same question (0)