How do I programmatically change printer settings with the WebBrowser control?

29,423

Solution 1

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;
                }
            }
        }
    }
    return false;
}


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

Solution 2

            string strKey = "Software\\Microsoft\\Internet Explorer\\PageSetup";
        bool bolWritable = true;

        RegistryKey oKey = Registry.CurrentUser.OpenSubKey(strKey, bolWritable);
        Console.Write(strKey);

        if (stringToPrint.Contains("Nalog%20za%20sluzbeno%20putovanje_files"))
        {
            oKey.SetValue("margin_bottom", 15);
            oKey.SetValue("margin_top", 0.19);
        }
        else
        {
            //Return onld walue
            oKey.SetValue("margin_bottom", 0.75);
            oKey.SetValue("margin_top", 0.75);
        }

Solution 3

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 persist on your system/user account.

Share:
29,423
Chris Doggett
Author by

Chris Doggett

Updated on July 09, 2022

Comments

  • Chris Doggett
    Chris Doggett almost 2 years

    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 programmatically 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();
    }