i have several printers and would like not only to select a specified
printer as the windows default printer but also change the papersource
this printer should use
with the following code i can change the default printer
CreateObject("WScript.Network").SetDefaultPrinter "my printer"
If Err.Number = -2147352567 Then
MsgBox "default printer could not be set!" & _
vbCrLf & vbCrLf & Err.Description, vbExclamation
End If
but how can i change the papersource on this printer / the windows
default printer?
thanks