Using Random Access Files

Ricky D

Well-Known Member
Licensed User
Longtime User
I am trying to load a bunch of objects I have saved into a Random Access File.

How do I loop through these objects from the raf to put them in a list?

There is no eof function.

regards, Ricky
 

HotShoe

Well-Known Member
Licensed User
Longtime User
Use the size method.

for i = 0 to ra.size - 1
read records here
next
 
Upvote 0
Top