Click here to Skip to main content
15,896,154 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
i create a web browser in Thread

C#
web = new WebBrowser();
       web.ScriptErrorsSuppressed = true;
       web.Navigate("http://www.exsample.org/");
       this.url = url;
       web.DocumentCompleted += new WebBrowserDocumentCompletedEventHandler(pageLoadedComlited);
       Application.Run()
       
       ;;dosent get here
       ;;>>my invokes here 
;


how to do invoke now after the applicion is run? how i handle this application?
Posted
Comments
[no name] 31-Aug-14 18:16pm    
Hard to tell from just this but it appears that you are creating a control and then running your application.
Sergey Alexandrovich Kryukov 31-Aug-14 22:00pm    
Of course you cannot get "here". You reach this point the the application exists. It's not even clear what you are trying to do and why.
—SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900