vote up 0 vote down star

I need to invoke a c# application within my c# control, as I do not feel like rewriting the application as a control.

I am able to launch the application using System.Diagnostics.Process.Start.

Now how do I call the methods in my application from/via the c# control as this is where I invoked the application using System.Diagnostics.Process.Start

flag

5 Answers

vote up 1 vote down

The easiest way is to change the application from .exe to .dll and then just reference the application in your project like a normal library.

link|flag
true, but as a curiosity is there a way to go about doing it the way i am experimenting with? – Brian Leahy Oct 29 '08 at 19:36
Not via Process.Start, although you may be able to bind you ApplicationDomain to the processes ApplicationDomain assuming that the permissions are allowed. The thing is you are going to need to be able to use reflection which is specifically .NET – Nick Berardi Oct 29 '08 at 19:41
Is there anything special I need to do if i go about changing the application from exe to a dll besides changing the build step to give me a dll? As my application has lost of forms, i assume there would be considerable work involed? – Eggs McLaren Oct 29 '08 at 19:46
vote up 0 vote down

You can't call "methods" of another process because its running in an entirely different OS process. You would have to essentially ask the process to execute a method for you, wait for the result, and then marshall the information back into your process. Of course, you would have to have to expose the methods through some kind of interprocess communication technology like WCF, COM+, etc. If you've got that kind of access to the executing program, you can also just use the assembly directly.

You really don't want to go through that if you can help it. It's going to be a lot more hassle.

link|flag
i have the source code the c# windows application – andyuk Oct 29 '08 at 19:54
In that case, I'd suggest refactoring the application to separate the business logic from the console UI layer, putting it into a class library. It's the logical next step. Then you can just use the class library. – dpurrington Oct 30 '08 at 18:15
vote up 0 vote down

Since you have the source code, copy it into the new project or create a DLL as suggested by @Nick Berardi.

link|flag
vote up 0 vote down

You could modify your .exe application and add a remoting interface to it, making it a server-process, and then let your "control" act as client-process and call methods on the server.

This is a hacky design and I wouldn't recommend it, but since you asked :)

link|flag
yes i know this is a wacky design but i am limited by technology. and a product that already exists and i donot have enough time to rewrite the application – Eggs McLaren Oct 29 '08 at 20:45
vote up 0 vote down

You can use System.Reflection to get into any assembly, regardless of EXE or DLL format.

To run another application, for example,

string fileName = "MainApp.exe";
string className = "Program";
string methodName = "Main";
string[] args = {"arg1", "arg2"};

Assembly asm = Assembly.LoadFrom(fileName);
foreach (Type typ in asm.GetTypes())
{
    if (typ.Name == className) 
    {
        BindingFlags flags = BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Static;
        MethodInfo method = typ.GetMethod(methodName, flags);
        method.Invoke(null, new object[] { args });
    }
}

To get to other methods, change the names accordingly.

This is based on actual working code that I originally derived from this example.

There might be better ways to write it, though -- this thread suggests using the Activator class for more concise code.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.