Hi,
I have store a .lst project into database like:
ListLabel LL = new ListLabel();
LL.DataSource = CreateDataSet();
byte[] report = GetReportFromDatabase();
MemoryStream memStream = new MemoryStream(report);
LL.Design(LlProject.List, memStream);
LL.Dispose();
But when I made some modification of the project using the Designer, when I close it an exception occurs:
“Memory Stream is not expandable”
and the modifications are not saved.
Which could be the issue? How can I solve it?
Thanks