Application Hosting - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T07:10:54Z http://stackoverflow.com/feeds/question/951975 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/951975/application-hosting 0 Application Hosting Vernon VonHinkelschmidt 2009-06-04T17:29:32Z 2009-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#952168 0 Answer by Bobby Alexander for Application Hosting Bobby Alexander 2009-06-04T18:03:28Z 2009-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>