In Word 2003, I've created a macro to select certain trays for paper type,
such as bond, draft, etc. My firm has multiple different printers, and I'd
like to have the macro automatically select a certain tray BASED on the
active printer. Is there an IF statement, for example, that I can use? i.e.
My button for selecting BOND paper would do something like the following: If
active printer=Mickey, tray3, if active printer=Minnie, tray 2, etc. I know
how to set up the VBA for the page setup and trays, I just need the piece for
the conditional statement for the printers.
THANKS so much for your help!

Signature
kurt
Jezebel - 14 Sep 2005 10:10 GMT
If [condition] then
...
elseif [condition] then
....
end if
or
Select case [active printer]
case [printer 1]
...
case [printer 2]
...
case else
...
end select
> In Word 2003, I've created a macro to select certain trays for paper type,
> such as bond, draft, etc. My firm has multiple different printers, and I'd
[quoted text clipped - 10 lines]
>
> THANKS so much for your help!