Include another EXE(having UI) in my C# Desktop Application
-
Hi All, Im right now working in Window Application using C#. Is there any way to include another windows Application(written in VC++ having UI also) in my Application. With Regards Amjath
-
Hi All, Im right now working in Window Application using C#. Is there any way to include another windows Application(written in VC++ having UI also) in my Application. With Regards Amjath
Maybe through a dll, not too sure...
"I guess it's what separates the professionals from the drag and drop, girly wirly, namby pamby, wishy washy, can't code for crap types." - Pete O'Hanlon
-
Hi All, Im right now working in Window Application using C#. Is there any way to include another windows Application(written in VC++ having UI also) in my Application. With Regards Amjath
How do you mean, include ? You can include anythign as a resource, but what do you want to do with it ?
Christian Graus - Microsoft MVP - C++ "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
-
How do you mean, include ? You can include anythign as a resource, but what do you want to do with it ?
Christian Graus - Microsoft MVP - C++ "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
Hi First of all thanks for u response. i have a Application written in vc++ window based(its some what black box to me). i want to use that application in my c# window based application is it possible. with Regards Amjath
-
Hi First of all thanks for u response. i have a Application written in vc++ window based(its some what black box to me). i want to use that application in my c# window based application is it possible. with Regards Amjath
OK, that's SO not what you asked. No, you can't really do this in a way that would be sturdy enough to release. You could make it work, by embedding the second exe inside the first but a - they would run independant of each other and b - it wouldn't be guarenteed to be stable
Christian Graus - Microsoft MVP - C++ "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )