How do you access each components of the separate objects in the vector? If I have an object that has 3 methods inside the vector ..how could I call the methods individually?
Thanks,
Raf
RafBayani@earthlink.net
You retrieve the element using obj1 = vecWhatever.elementAt(iSomeIntegerIndex); then you cast it to the appropriate type smclSomething = (SomeClass) obj1; then you call the method smclSomething.doSomething(); MikeD