A
adebiasio
I have an application that has various libraries. One of them I use
shared methods in a class A to have all libriares access these methods.
This seems to work with no problems.
However, I am trying to develop some type of object model to allow
third party applications to modify/control certain features of my
application. To do this the third application needs to access the
shared methods of class A. But it is not working. The methods return
blank values indicating that it is a separate instance of class A.
How can another application access this same class A.
I would also like to take it another step further. Two users on the
same machine can access my application at the same time. There would
then be two difference instances of class A. Which would be OK. But
when then third party application tries to access the shared methods of
class A which one would it get. Ideally, a box would popup showing the
two different users, select the right one and access that particular
class A.
Any thoughts would greatly be appreciated.
shared methods in a class A to have all libriares access these methods.
This seems to work with no problems.
However, I am trying to develop some type of object model to allow
third party applications to modify/control certain features of my
application. To do this the third application needs to access the
shared methods of class A. But it is not working. The methods return
blank values indicating that it is a separate instance of class A.
How can another application access this same class A.
I would also like to take it another step further. Two users on the
same machine can access my application at the same time. There would
then be two difference instances of class A. Which would be OK. But
when then third party application tries to access the shared methods of
class A which one would it get. Ideally, a box would popup showing the
two different users, select the right one and access that particular
class A.
Any thoughts would greatly be appreciated.