On Wednesday 05 August 2009 12:14:47 pm Paul McNett wrote: > John wrote: > > Is there an EOF() or a flag that I can use to determine I have filled the > > detail band with all the data. > > self.RecordNumber gives the current (0-based) record number. > len(self.Cursor) gives the number of records in the cursor. > > So, you could test if we are on the last record with, for example: > > <expr> > "Last record" if len(self.Cursor) == (self.RecordNumber + 1) else "" > </expr> > > Paul I believe that will work - thanks Johnf
_______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/[email protected]
