KNOWLEDGE BASE
Log In    |    Knowledge Base    |    4D Home
Tech Tip: How to repeat printing of rows on additional pages
PRODUCT: 4D View | VERSION: 2003 | PLATFORM: Mac & Win
Published On: September 24, 2003

Repeating row(s) on each page that is printed is very easy. In order to print the first row, you have to tell 4D View that you want to start repeating the first row and stop on the first row. For example:

PV SET PRINT PROPERTY (Area;pv print repeat first row ;1) `starting row is 1
PV SET PRINT PROPERTY (Area;pv print repeat last row ;1) `ending row is 1

versus

PV SET PRINT PROPERTY (Area;pv print repeat first row ;1) `starting row is 1
PV SET PRINT PROPERTY (Area;pv print repeat last row ;5) `ending row is 5

The above tells 4D View to start repeating the first through the fith row.