How to get System’s active printer name
Posted on November 29, 2011
Here is the code to get the System's active printer name:
1 2 3 4 | Private Function GetActivePrinter() As String Dim ps As New Drawing.Printing.PrinterSettings() Return ps.PrinterName End Function |