posted 22 years ago
Hi,I need help in implementing this. Any help is appreciated
I have three vectors:Vector v = new java.util.Vector();
v.addElement("first");
v.addElement("second");
v.addElement("third");
v.addElement("Test");
Vector v1 = new java.util.Vector();
v1.addElement("second1");
v1.addElement("second2");
Vector v2 = new java.util.Vector();
v2.addElement("third1");
v2.addElement("third2");
v2.addElement("third3");
Now my aim is to display the values in the vectors( The values will be dynamically coming to the vector)
like this
v1.firstelement
v2.firstelement
v3.firstelement
v1.secondelement
v2.secondelement
v3.secondelement
and so on,,
I am able to do this with 2 vectors, but stuck with 3, any help//
Thanks