Using the following 3 lines. I send calendars to separate files for each owner. My question is what format are these files and how can I print them later?
Me.UltraSchedulePrintDocument1.PrinterSettings.PrintFileName = "c:\dev\Owner_" & intprintout.ToString
Me.UltraSchedulePrintDocument1.PrinterSettings.PrintToFile = True
Me.UltraSchedulePrintDocument1.Print()
Hello and thank you for contacting Infragistics.
The PrintToFile property is inherited from the PrintDocument class built in to the .NET Framework.
You can read more about the Print to File functionality on Microsoft's web-site.
http://windows.microsoft.com/en-us/windows7/print-to-file