LoadDocument fails in prerelease build
Posted: Fri Oct 16, 2009 11:42 am
When we switched from the previous version (2009.2.500.0) to the prerelease version (2009.3.511.0), our code broke:
The error is occurring in the LoadDocument call, and appears to be due to a problem with reading the stream (offset parameter to Seek is a negative value).
Is this a known issue / will it be addressed?
Code: Select all
Stream reportFile = GetFileStream("Report.mdc");
if (reportFile != null)
{
StiReport reportOutput = new StiReport();
reportOutput.LoadDocument(reportFile);
...
Is this a known issue / will it be addressed?