Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
275
ultraSchedulePrintDocument Problem
posted

Hello All,

I am facing a problem while using ultraSchedulePrintDocument control, whenever I set

ultraSchedulePrintDocument.PrintStyle = SchedulePrintStyle.Daily

I am unable to read the text on appointments i created but it's working fine on other options i.e.

ultraSchedulePrintDocument.PrintStyle = SchedulePrintStyle.Weekly and

ultraSchedulePrintDocument.PrintStyle = SchedulePrintStyle.Monthly

can anyone please tell me why the control is behaving this way.

Parents
No Data
Reply
  • 180
    Offline posted

    The printing of the control is odd -- for a daily view, it FORCES the output to only 1 page.  You cannot get the control to span multiple pages.

    We just solved this issue by essentially printing portions of the schedule onto a document.  THen combining the documents together and sending that to the printer.

    The scheduler printdocument has the ability to set the start time and end time, so you can figure out the range you want to print, then put each range on a single document.    There is sample code on the internet for combining print documents.  So at the end, you have a multi-page document.

    This solved the issue nicely.

Children