Say you have Module1, Form1, and ClassModuleA & ClassModuleB. I have instantiated Form1 from within Module1. I have instantiated ClassModuleA & ClassModuleB from within Form1.

I need to be able to read/write ClassModuleA's variables from within ClassModuleb. How do I do this? Do I need to instantiate the 2 classes from Module1 instead of Form1?

Is there a better way?

Thanks for any input!

John