I’m having a problem with some formula not being recalculated depending on how Excel is launched.
Hi Jeff,
Thanks for the reply.
Hi,
I have tested my application with v6.0.0.1 and still have the same problem.
Hi,
Workbook wb = new Workbook(“C:\temp\book-11.xlsx”);
Double d = 0;
for (Int32 i = 0; i < 10; i++)
wb.Worksheets[“Sheet1”].Cells[i, 0].PutValue(d += 0.5);
wb.CalculateFormula();
wb.Save(“c:\temp\Book1-Out.pdf”,SaveFormat.Pdf);
ProcessStartInfo startInfo = new ProcessStartInfo(@“C:\Program Files (x86)\Adobe\Reader 9.0\Reader\AcroRd32.exe”);
startInfo.Arguments = “c:\temp\Book1-Out.pdf”;
startInfo.UseShellExecute = true;
Process p = new Process();
p.StartInfo = startInfo;
p.Start();
Hi Jeff,
Hi Jeff,
The issues you have found earlier (filed as 28626) have been fixed in this update.
This message was posted using Notification2Forum from Downloads module by aspose.notifier.