I'm trying to copy a worksheet form a workbook to another.
- Code: Select all
Workbook w1 = new workbook();
Workbook w2 = new workbook();
w1.LoadFromFile("C:\\Templates\\Template.xls");
w2.Worksheets.AddCopy(w1.Worksheets[0]);
Here i got the ApplicationException "Cannot find required constructor". With an older version of Spire.XLS this worked without problems, where there any changes?