Find out all the installed printers and add them into the ListBox1
Imports System.Drawing.Printing
PrivateSub FindInsttaledPrinters()
Dim InstalledPrinter As String
ForEach InstalledPrinter In PrinterSettings.InstalledPrinters
ListBox1.Items.Add(InstalledPrinter)
Next InstalledPrinter
End Sub
Leave a Reply