(Resolved) - Class within a Class
We have created class modules and collections for
a project.
One Class is Called Project, it has several properties:
Customer, CustomerPhone#......
Each Project can have a Quality Assurance(class) which also
has it's own properties: Statement_of_Work, Batch_process....
The problem is that I want to access the Quality Assurance
Class from my Project Class Like So:
Dim MyProj as New Project
MyProj.QualityAssurance.Statement_of_work = "something"
---------this give me an error of Object not Set ------------
I can create New Projects and New Quality Assurances but
I cannot access them the way I stated above.
I am guessing that I have to link them somehow but I'm
not sure what to do.
Basically I just want to have a class within a class.
Any help is appreciated!!!