-
rephrased question
I have to make a cd browser that allows me to search through a cd collection left and right. It must also allow me to add new cds to the collection.
I have created a file that holds all of the song information. I can recieve all of the information at the click of a button but i need the entitys to appear one at a time in the text box as i scroll left and right
-
you could load all the entries into an array, and just load the information from the next index on the button click. Just keep track of what index you're on
:)
-
Is there a reason you would not want to use a database? Looks as if a mdb would be perfect for this.