I've looked everywhere and have found nothing. I need to give my users the ability to select the printer they always want to print to while using the application. I found code to get the printers.....
Dim objPrint As New System.Drawing.Printing.Pr
interSetti
ngs()
Dim strItem As String
Dim strPrinters As String
For Each strItem In objPrint.InstalledPrinters
strPrinters &= strItem & vbCrLf
Next
Now I just need to know how to use the value. How do I print a document with the name of a printer?
Thanks
Start Free Trial