Click here to Skip to main content
15,908,173 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello I developed one windows application and called it in browser.i used
<Object> tag. the problem is when i call application from browser the application opened in new window i want it to open in HTML frame .
Posted
Comments
ZurdoDev 30-Jan-14 7:54am    
Even if you can get it working I would strongly suggest you do not do this. Windows and Web are not meant to mix.

1 solution

You can't. It's that simple. A Windows Forms application will launch as a seperate process and it will have no idea that it was even alunched from a browser, let alone know about the window you want it to be in.

Also, launching a Windows Forms application freom inside a browser is a HUGE security risk. In order to pull this off, you need the browser security settings to be as low as possible to set them. This opens your browser up to all kinds of nasty secruity risks.
 
Share this answer
 
Comments
Devraj Kapdi 31-Jan-14 1:07am    
Thank you sir... for your reply.

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