User Profile & Activity

Alexandre Liard Member
Page
of 7
Posted: November 19, 2013 9:50 AM
If you cannot give me a fix, do you know if there is a workaround?
Posted: November 18, 2013 1:02 PM
Hi Bernard,

While using firefox, right click in the texteditor to show up the context menu. You will see the standard context menu from the firefox browser showing above the texteditor menu.

See image attached.

Regards,

Alex
Posted: November 15, 2013 3:06 PM

Hi Bernard,

The previous file worked. However, we've just found that another image is missing.

It is the image for the "merge cell down" item of the contextual menu on a table (table_mergecelldown_metro.png).

regards,
Alex

Posted: November 13, 2013 10:48 AM
Do you know if you will be able to send me a build with a fix soon
Posted: November 12, 2013 11:08 AM
Hi,
IE 11 is now released event on Windows 7, it is getty urgent for us to get a fix for this issue.
Any updates?

Regards,

Alex
Posted: November 12, 2013 11:08 AM
Hi,
IE 11 is now released event on Windows 7, it is getty urgent for us to get a fix for this issue.
Any updates?

Regards,

Alex
Posted: October 21, 2013 9:56 AM

Hi Bernard,

There is a security issue having to save the file in a temporary folder. This way, the report is available to anyone who will fall on that URL (even if it is for a short period of time) and then potentially leads to confidential information leak.

This is the major issue.

Another issue is that we need to give Write access to a folder under the web application. This is not a good practice.

Regards,

Alex

Posted: October 18, 2013 11:56 AM
Hi Bernard,

We are also using activereport for a reporting module in out application.
We do the export without using a temporary file by exporting to a memorystream.

Here is the code we use:

// in this sample this._report.Document is a ActiveReport.Document class

//getting the memorystream
System.IO.MemoryStream stream = null;

using(DataDynamics.ActiveReports.Export.Pdf.PdfExport pdf = new  DataDynamics.ActiveReports.Export.Pdf.PdfExport())
{
  stream = new System.IO.MemoryStream();
  pdf.Export(this._report.Document, stream);
  stream.Position = 0;
}

//output to the page
this.Response.Buffer = true;
this.Response.ClearContent();
this.Response.ClearHeaders();

this.Response.AppendHeader("content-disposition", "inline; filename=report.pdf");
this.Response.ContentType = "application/pdf";

if(exportedReport.stream.Length > 0)
this.Response.BinaryWrite(exportedReport.stream.ToArray());
this.Response.End();
Posted: October 11, 2013 9:21 AM

Do you think you can develop a method that will only create a filestream?

After that we could either send ti to the browser ourselve or just save the file in a database instead of saving it on disk.

Posted: October 11, 2013 9:05 AM

Hi Bernard,

This time I was able to open your archive and extract the images. There's only one little issue left, it is that I'm still missing the image for the print toolbar button of the WebTextEditor.

Regards,

Alex

All times are GMT -5. The time now is 1:56 AM.
Previous Next