Application Hosting - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T07:10:54Zhttp://stackoverflow.com/feeds/question/951975http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/951975/application-hosting0Application HostingVernon VonHinkelschmidt2009-06-04T17:29:32Z2009-06-08T21:04:44Z
<p>Hello,</p>
<p>There are some applications on my computer (Win XP Home) that are native WIN32 applications that I would like to host from an application built in .NET that could offer password protection before running sed application. </p>
<p>Is there a nice solution to my problem?</p>
<p>(over 2 years of C#.NET experience)</p>
http://stackoverflow.com/questions/951975/application-hosting/952168#9521680Answer by Bobby Alexander for Application HostingBobby Alexander2009-06-04T18:03:28Z2009-06-04T18:03:28Z<p>What do you mean by host? Is the application an activex component?</p>
<p>You could do it if the application was a COM application. Just create a .net win form, create a wrapper around the application and call it from the winform. The winform could take care of your password authentication.</p>
<p>All said and done, I dont think what you are doing is a good idea. Might lead to crashes and cause debugging nightmares.</p>
<p>Cheers</p>