Ricky D Well-Known Member Licensed User Longtime User Apr 30, 2012 #1 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
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 Apr 30, 2012 #2 Use the size method. for i = 0 to ra.size - 1 read records here next Upvote 0
Ricky D Well-Known Member Licensed User Longtime User Apr 30, 2012 #3 Thanks, that works so far. regards, Ricky Upvote 0