Please help me !!!!!
I want to know how to sort a list of records in a text file.
I want to sort them by customer number.
Here's whats in my module
Public CustomerArray() As CustomerRecord
Public Type CustomerRecord
Number As String
Name As String
Address As String
Town As String
PostCode As String
Phone As String
Email As String
PromoInfo As String
End Type
I can add new records, update records, delete records and display records.
I want to be able to display them all. I.E. load the first record into my form thenwhen i press next it will display the next number.
I have searched through loads of websites and i can find plenty of search algorithms but i'm new at this so i dont know how to get my records into them.
I dont want to use bubble sort because every website says its slow.
If you want i'll email you the code for my program.