Click here to Skip to main content
15,884,298 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Can any body please help me!!!!

Wanted to interaction between web and desktop through event and using Web browser control

Basically my desktop application using web browser control to show HTML page and I want if any user click on any HTML button then any kind of event should raised and make call to desktop application


Thank you,
URVISH SUTHAR
Posted

1 solution

public Form1()
 {
     InitializeComponent();
     WebBrowser browser = new WebBrowser();
     browser.Url = new Uri(@"http://stackoverflow.com/questions/9885639/web-to-desktop-application");
     this.Controls.Add(browser);
 }
 
Share this answer
 
Comments
URVISH_SUTHAR1 10-Jan-13 7:30am    
Thanks for response but this is not solution mate

I wanted to interaction between web and window
fjdiewornncalwe 10-Jan-13 10:35am    
And some more plagiarism: source
Sandeep Mewara 10-Jan-13 10:44am    
I just observed last few answers provided by him - more then half were no where near the actual question. Now plagiarism too! :doh:
fjdiewornncalwe 10-Jan-13 10:47am    
I've warned him a couple times, and I know someone else was warning him yesterday as well. I'm going to watch this guy. If it continues over the next little bit, I'll report him in the Spam & Abuse forum.
URVISH_SUTHAR1 11-Jan-13 2:23am    
Guys, I seen same kind of functionality on http://www.awesomium.com/ controls, can anyone please know me if same-thing work with web browser control

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