I need to get the default printer name. I\'ll be using C# but I suspect this is more of a framework question and isn\'t language specific.
This should work:
using System.Drawing.Printing;
PrinterSettings settings = new PrinterSettings(); string defaultPrinterName = settings.PrinterName;