Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

All,

I am using STA thread to open webbrowser control and then navigate to sharepoint site, now I am expecting authentication window to open but it does not come up. But when I create webbrowser control on main thread it will work fine. This is my code which I am using to create webbrowser control.

        Thread th = new Thread(abc);
        th.SetApartmentState(ApartmentState.STA);
        th.Start();


 void abc()
    {
        WebBrowser wb = new WebBrowser();
        wb.DocumentCompleted += wb_DocumentCompleted;
        wb.Navigate("http://amasud.sharepoint.com/");
        Application.Run();
    }
share|improve this question
Y r u adding DC event to wb DC? Shouldn't the event still trigger without assigning it to itself? – Erx_VB.NExT.Coder Sep 30 '12 at 12:08

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.