views:

2211

answers:

2

I finally figured out how to print transformed XML without prompting the user or showing an IE window, but now I need to specify a number of copies and possibly other printer settings.

Is there a way to programatically change printer settings on a WebBrowser control?

The code in question:

private static void PrintReport(string reportFilename)
{
    WebBrowser browser = new WebBrowser();

    browser.DocumentCompleted += browser_DocumentCompleted;

    browser.Navigate(reportFilename);
}

private static void browser_DocumentCompleted
    (object sender, WebBrowserDocumentCompletedEventArgs e)
{
    WebBrowser browser = sender as WebBrowser;

    if (null == browser)
    {
        return;
    }

    browser.Print();

    browser.Dispose();
}
+3  A: 

The only method I've had success with is modifying the registry on the fly (and changing them back to not affect anything else).

You can find the settings you need at "Software\Microsoft\Internet Explorer\PageSetup" under CurrentUser.

To change the printer, you can use this:

using System.Management

public static bool SetDefaultPrinter(string defaultPrinter)
{
    using (ManagementObjectSearcher objectSearcher = new ManagementObjectSearcher("SELECT * FROM Win32_Printer"))
    {
        using (ManagementObjectCollection objectCollection = objectSearcher.Get())
        {
            foreach (ManagementObject mo in objectCollection)
            {
                if (string.Compare(mo["Name"].ToString(), defaultPrinter, true) == 0)
                {
                    mo.InvokeMethod("SetDefaultPrinter", null, null);
                    return true;
                }
            }
        }
    }
}


As for the number of copies, you can always put the WebBrowser.Print in a while loop.

Austin Salonen
Any problems with that approach if the users are locked-down non-Admins? Which registry keys do I need to set?
Chris Doggett
So long as the user is able to change the settings in the Page Setup dialog, you can edit the registry settings on the fly. I'll look up the keys and put them in my answer.
Austin Salonen
Any way to change the printer name or number of copies via that method? That's what I really need to do, but the registry keys only really have header, footer, and margins. If not, I'll go ahead and accept your answer and force the users to just pick their damn printer and number of copies.
Chris Doggett
Thanks. This turned out to be exactly what I needed after dropping one of the nulls from the InvokeMethod call. Works perfectly.
Chris Doggett
A: 

you need to change registry settings via code to change settings for internet explorer or the web browser control. check out the link below, it describes how to do so, also if there's more options you need to alter using the registry, then use regedit.exe to find what other keys internet explorer has.

http://support.microsoft.com/kb/236777

ps: you should note that any changes you make via your code to internet explorer's registry settings will be permanent on your system/user account.

lilmoe