K
Kevin
I have the following code which print selected sheets in a
workbook.
Sub test2()
For Each cell In Selection
On Error Resume Next
Sheets(cell.Value).PrintOut Copies:=cell.Offset(0, 1).Value
On Error GoTo 0
Next
End Sub
Is there a way to change the properties of the printer
when this macro is run to use the manual sheet feeder
instead of the default setting?
Thanks in advance for any suggestions.
Kevin
workbook.
Sub test2()
For Each cell In Selection
On Error Resume Next
Sheets(cell.Value).PrintOut Copies:=cell.Offset(0, 1).Value
On Error GoTo 0
Next
End Sub
Is there a way to change the properties of the printer
when this macro is run to use the manual sheet feeder
instead of the default setting?
Thanks in advance for any suggestions.
Kevin