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


_______________________________________________
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]

Reply via email to