Simple requirement: How can I display a print dialog before actual print. This way user can select their printer. Right now I am able to print only to the default printer.
Thanks
You can use the .NET PrintPreviewDialog or just the PrintDialog, both of which have a Document property that you would assign your PrintDocument (or UltraGridPrintDocument) to. You can find documentation from Microsoft, such as this link.
-Matt