Hello,

I am working on an application that uses several external references that all work together. I have a feeling that they are all launching on different threads preventing them from working together and communicating with each other. How can I either, make sure that they all initilize on the same thread or (even better) make sure they initilize on the same thread as my application, so that they can all communicate freely between each other and my application without causing cross thread exceptions (and other thread related problems)

Thanks!

~Ogmius