You are not logged in. You can browse in the PowerBASIC Community, but you must click Login (top right) before you can post. If this is your first visit, check out the FAQ or Sign Up.
You'll have to send the records in the correct order yourself.
You can:
1) sort the records in the file,
2) read all the records into an array then sort them
3) or you can load just that portion of the record you want to
sort on into an array (along with the record number), sort
and print.
The following code is off the top of my head and just an example.
Code:
TYPE RecordIndexTYPE
SortData AS STRING * 20
RecNo AS LONG
END TYPE
DIM tIdx(LastRecord) AS RecordIndexTYPE
FOR RecNo = 1 TO LastRecord
GET #FileNo, RecNo, tRecord
tIdx(RecNo).SortData = tRecord.Names
tIdx(RecNo).RecNo = RecNo
NEXT
ARRAY SORT tIdx()
FOR RecNo = 1 TO LastRecord
GET #FileNo, tIdx(RecNo).RecNo, tRecord
PrintMyData tRecord
NEXT
We process personal data about users of our site, through the use of cookies and other technologies, to deliver our services, and to analyze site activity. For additional details, refer to our Privacy Policy.
By clicking "I AGREE" below, you agree to our Privacy Policy and our personal data processing and cookie practices as described therein. You also acknowledge that this forum may be hosted outside your country and you consent to the collection, storage, and processing of your data in the country where this forum is hosted.
Comment