Hi Dave,
When paging is enabled, scroll only scrolls within the current page. So if your PageSize is 15, then scroll would be only scrolling the 15 records. If the Grid's Height is greater than 15 records, then it won't display scroll bar at all.
You are not getting <Preview> and <Next> page because it's not needed in your case. In your case when all page numbers can be displayed, <Preview> and <Next> will not be displayed.
Currently there doesn't seem to be an easy way to display "Yes" or "No" in the Grid for a bit field except for changing the SQL select statement. For example, instead of using:
Code: SQL
select bit_field from ....
You can do:
Code: SQL
select iif(bit_field = 1, 'Yes', 'No") from ...
In the long run, we will look into it and see if we can do this automatically on our side.
Thanks