Set the selected printer when JS window.print() is used?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • jpas84
    New Member
    • Sep 2008
    • 2

    Set the selected printer when JS window.print() is used?

    When using JavaScript window.print() command to print in IE, is it possible to set the selected printer in the Print window? In some cases I'd like to have the user's default printer selected, and in other cases have a specific printer selected when the Print window is displayed.

    The default behavior seems to be that the first time the Print window is displayed, the default printer is selected. After that, the last selected printer is the one that is selected when the Print window is re-opened. Does JavaScript allow any control of the selected printer? Other methods to select the printer before the Print window opens? Thanks,
  • acoder
    Recognized Expert MVP
    • Nov 2006
    • 16032

    #2
    JavaScript doesn't allow that sort of control, but you may use a browser-specific solution if it's a controlled user environment, e.g. intranet, with reduced security. For example, for IE, you may use an ActiveX control to control printing.

    Comment

    • jpas84
      New Member
      • Sep 2008
      • 2

      #3
      Originally posted by acoder
      JavaScript doesn't allow that sort of control, but you may use a browser-specific solution if it's a controlled user environment, e.g. intranet, with reduced security. For example, for IE, you may use an ActiveX control to control printing.
      An IE ActiveX control should do what I need. Does Microsoft have their own ActiveX print control that is part of XP? If yes, can point me in the direction of instructions of how it is used and its' name?

      Thanks much,

      Comment

      • acoder
        Recognized Expert MVP
        • Nov 2006
        • 16032

        #4
        I don't know about Microsoft, but a product called Meadroid may be what you need.

        Comment

        Working...