| If you want to show the currently viewed rows in your datawindow then you
can achieve this by using the describe command in a computed field. Here is a code
extract from PBDelta That shows the row count and
the row at the top of the page. You could use similar code to show the last row on the
page.
String( Long( describe( "datawindow.firstrowonpage" )), "000"
) + ":" + String( rowcount(), "000" )
|