Hello,
In my report's page footer, I have txttotal, txttva and txtpayable as fields.
This prints the total of products ordered on the bottom of the page.
However, what I want to do is NOT print these boxes when I have more than 1 page.
I used the following code :
If page <> pages then
txttotal.visible = False
else
txttotal.visible = True
this works when viewing the report on the screen; however, when printing, it prints the overall total on every page.
Does anyone know a property I can use to have it not print ??
Regards,
PdtIt
In my report's page footer, I have txttotal, txttva and txtpayable as fields.
This prints the total of products ordered on the bottom of the page.
However, what I want to do is NOT print these boxes when I have more than 1 page.
I used the following code :
If page <> pages then
txttotal.visible = False
else
txttotal.visible = True
this works when viewing the report on the screen; however, when printing, it prints the overall total on every page.
Does anyone know a property I can use to have it not print ??
Regards,
PdtIt