I have an ASP page that dynamically generates a Word document, using Response.ContentType = "application/msword". It is a page of labels, designed to be printed on a specific label printer. I'd like to change the default printer for the page to that label printer. I know such a thing can be done when one automates a Word document (e.g. oWord.ActivePrinter = "Brother PT-2400"), but can I do the same thing in this ASP page? If so, what is the syntax? Thanks! 