Object shared with several application...
-
Hi world! I'm looking for methods to share an object (C++) between several applications? I use VC6... Example: Application 1 write in
my_sharing_object
object. Application 2 read any attributs frommy_sharing_object
object (writed by the first application). Any idea? Thans in advance for your help. Hello World!!! :) from Raphaël -
Hi world! I'm looking for methods to share an object (C++) between several applications? I use VC6... Example: Application 1 write in
my_sharing_object
object. Application 2 read any attributs frommy_sharing_object
object (writed by the first application). Any idea? Thans in advance for your help. Hello World!!! :) from RaphaëlHi, I personally would implement a SINGLETON COM server. Maybe overkill for what you want, but implement a compliant IDispatch interface, and now app 2, 3, or 4 can be VB or even Internet Explorer clients - much more sexy. Hope this helps, Andy