Okay i've created an array object with help from here like so:
CdRecord[] array = new CdRecord[5];
array[0] = new CdRecord();
now i've used a while statement to write to the arrays , im writing CDName,AlbumName & NumberOfTracks...
when i run my program it all works except that when i want to print the entries made so far.. i just get the last one i input....
i want it to print out all the entries that i input.. neone know the code for that,, i've have used this to print out my arrays:
array[0].printCdRecord();
hope u can help..