Jan,
Also, while I have your attention, is there any way to specify how a
scrolling region displays the data? I use it to display invoice info and
would like it to sort by invoice date descending, rather than ascending, if
possible.
You might try using a Variable List view to display information like this
you can change your order by
on the fly. Something like this.
SET VAR vOrderBy TEXT = ('InvoiceDate ASC')
Then you can place in the ORDER BY section of the ListView
ORDER BY &vOrderBy
Also the titles are sortable so you just clik on the title and they sort.
Jan