Hi all,
i've got a question to the xlsIO Interface.
I'm trying to open a Excel File in my aplication and do something with this file (no problem).
For all other users they maybe need at the same time the same file, there should be an information, that the file is used by my process. (Like the normal Excel way. If i open an excel file, someone else who want's to open the same file get's a message that this file is in used by me).
My code is:
ExcelEngine excelEngine = new ExcelEngine();
IApplication application = excelEngine.Excel;
IWorkbook workbook = application.Workbooks.Open(@"c:\Test.xls");
I'm using Syncfusion 6.302.0.30
Is there an property i can use to get this result,
Regards Stephan