Please let me know if it is posssible to use instance of one application into another ? For example, i have one application, I am creatiing a instance for it, I want to access this same instance into other application ?
-
Please let me know if it is posssible to use instance of one application into another ? For example, i have one application, I am creatiing a instance for it, I want to access this same instance into other application.
-
Please let me know if it is posssible to use instance of one application into another ? For example, i have one application, I am creatiing a instance for it, I want to access this same instance into other application.
Don't put the entire post as subject. It's too much text to be useful as a subject. What exactly do you mean by accessing an instance of an application? What is is that you are trying to accomplish? You can start another application from one application. If you start a console application, you can redirect the input and output to streams that you create yourself.
--- single minded; short sighted; long gone;
-
Don't put the entire post as subject. It's too much text to be useful as a subject. What exactly do you mean by accessing an instance of an application? What is is that you are trying to accomplish? You can start another application from one application. If you start a console application, you can redirect the input and output to streams that you create yourself.
--- single minded; short sighted; long gone;
Suppose I have an application A. I create a instance of it. Now I want to access this existing instance of application A into application B.
-
Suppose I have an application A. I create a instance of it. Now I want to access this existing instance of application A into application B.
You've just said the same thing again. Repeating an unclear instruction doesn't make it any clearer.
Deja View - the feeling that you've seen this post before.
-
You've just said the same thing again. Repeating an unclear instruction doesn't make it any clearer.
Deja View - the feeling that you've seen this post before.
I have an appplication A, which has a method to save information regarding the status of the application whenever the application closes abruptly. I want to access this method in my windows service and save the status of the application A whenever the application closes abruptly.