Problems with geckofx webbrowser control

Discussion in 'C#' started by sizzlefire, Aug 28, 2010.

  1. sizzlefire

    sizzlefire New Member

    Joined:
    Aug 28, 2010
    Messages:
    1
    Likes Received:
    0
    Trophy Points:
    0
    I currently have a program I have been working on that uses GeckoFX which is a webbrowser control for its backend. It works fine if I have it load a site such as google, however this specific site is crashing the browser no matter what and I cannot debug it. Can anyone help me figure out exactly how to stop it from crashing the whole program?
    Code:
             private void Form1_Load(object sender, EventArgs e)
            {
                try
                {
                    GeckoWebBrowser wb = new GeckoWebBrowser();
                    wb.Dock = DockStyle.Fill;
                    panel1.Controls.Add(wb);
                    wb.Navigate("http://clixbisnis.site88.net");
                }
                catch (Exception ex)
                {
                }
            }
     

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice