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?
Code: Select all
Stream reportFile = GetFileStream("Report.mdc");
if (reportFile != null)
{
StiReport reportOutput = new StiReport();
reportOutput.LoadDocument(reportFile);
...