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.
I believe the code snippet that was mentioned above was this one:http://www.csharp-examples.net/combine-multiple-printdocuments/
I can't print all the time slots of a day.
Me.UltraSchedulePrintDocument1.PrintStyle = SchedulePrintStyle.Daily
Me.UltraSchedulePrintDocument1.StartTime = New TimeSpan(0, 0, 0)
Me.UltraSchedulePrintDocument1.EndTime = New TimeSpan(23, 59, 59)
http://i57.tinypic.com/33ehdea.png
Hello,
I'am encountering the same issue.
Where can I find this sample code, this would be of great help.
Tx
Rudy
Thank you for your help dnarine :)
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.