Hi all,
In Office.Interop.Excel there is a way to open a XLS file without warnings and Events:
Thanks in advance...
In Office.Interop.Excel there is a way to open a XLS file without warnings and Events:
pExcel = new Excel.ApplicationClass();
pExcel.EnableEvents = false;
pExcel.Visible = pvisible;
pBooks = pExcel.Workbooks;
pBook = null;
pBook = pBooks.Open(pNomArchivo, pMissing, pMissing,
pMissing, pMissing, pMissing, pMissing, pMissing, pMissing,
pMissing, pMissing, pMissing, pMissing, pMissing, pMissing);
How can i do the same with NPOI?Thanks in advance...