-
I am trying to run a component in MTS. It is not able to create an instance of object when I am trying to create an instance of another object from class_initialise method of one object.. both the objects are running under MTS.
so can I create instance of other object in class_initialise method of one object running under MTS?
-
You can't use the initialize event, because you don't know when MTS creates the instance of the object. Also you have to take care of the value of properties, since another application could have changed them.