how about for data arrays
Hey guys, I have a similar problem.
I made a small database that basically reads/write by a text file of the records. This kind of thing
For intX = 0 to intNumRecords
Write #1, strName(intX), strAddress(intX), strEmail(intX)...
Next intX
Question is: How can I alphabetize the strName() of a new
record that is being added to the file and keep all records of the index intX intact (in other words re-writing the entire file now alphabetized with name , address, ....etc.
still corresponding)?
Has anybody done this already?
Thanks .