I am new to Visual Basic 6 Class Modules and am having difficulty constructing a certain class.
First off, I created a simple class, which is basically an array with some basic properties (Sum, etc).
Next off, I want to create another class, which has these arrays as properties. As expected, I can do this by declaring the first class as public variables in the class module. However, this class is going use A LOT of these arrays, and in fact they need to be in an array, for indexing purposes and simplicity of programming. However, VB6 will not let you declare public arrays in a class module. I am aware that I could declare an array as a private variables, but then I see no way to reference or directly edit the first class and its elements from "the outside".
Very confused, any help would be appreciated. Let me know if clarification is needed.