"Printing Calendar" is not printable
Hi,
I'm using your product to print a calendar through the code provided on your website. I can export a calendar to an image, but if you do a print (or print preview) the image is not printed/visible.
I'm using IE7 for this.
protected void ButtonExport_Click(object sender, EventArgs e)
{
int hourHeight = DayPilotCalendar1.CellsPerHour * DayPilotCalendar1.CellHeight;
Response.Clear();
Response.ContentType = "image/png";
MemoryStream img = DayPilotCalendar1.Export(ImageFormat.Png, 9 * hourHeight);
img.WriteTo(Response.OutputStream);
Response.End();
}
Any solution to this problem?
Kind regards,
Koen
Asked by Anonymous 1 year ago.