Hello-
Is it possible to specify the manual feed tray when using the printout method?

Signature
Thanks,
Mike
ben - 23 Jan 2006 22:51 GMT
Mike
No not using that method my guess is your going to have to pull printer
information and write it back using an API Call
try here for a nice list of API calls
http://www.mentalis.org/apilist/apilist.php

Signature
When you lose your mind, you free your life.
> Hello-
> Is it possible to specify the manual feed tray when using the printout method?
Peter Rooney - 24 Jan 2006 11:10 GMT
Mike,
Have you tried using SENDKEYS to specify settings for your printer?
These work to alter the portrait/landscape simplex/duplex settings on my
LaserJet5SI.
%FU is the same as Alt-F (File) Setup
In the first example, %O is Alt-O (Options) then you just add whatever
letters you'd have to type to do the job manually.
Hope this helps
Pete
Sub PrinterSetupPortraitDuplex()
SendKeys "%FU%O%RD~~"
End Sub
Sub PrinterSetupLandscapeDuplex()
SendKeys "%FU%O%LT~~"
End Sub
Sub PrinterSetupPortraitSimplex()
SendKeys "%FU%O%RN~~"
End Sub
Sub PrinterSetupLandscapeSimplex()
SendKeys "%FU%O%LN~~"
End Sub
> Hello-
> Is it possible to specify the manual feed tray when using the printout method?