Fixed text on the SIDE of page of the data like header or footer?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have to duplicate an office form which has a normal fixed text header and
footer. In addition, there is a side legend which must appear in a fixed
position and fixed order on the side of each page with a running total of the
number of certain classes of data. I don't even know the keywords you would
use to look this up. Any ideas?
 
Stan said:
I have to duplicate an office form which has a normal fixed text header and
footer. In addition, there is a side legend which must appear in a fixed
position and fixed order on the side of each page with a running total of the
number of certain classes of data. I don't even know the keywords you would
use to look this up.


You can use the Page event to execute a VBA procedure to do
that kind of thing. The key is to use the report's CurrentX
and CurrentY properties to specify where you want to print
on the page and the Print method to put whatever you want at
the current position. Reports also have the usual Font,
FontSize, ForeColor, Bold, etc properties that can be used
to format the printed information.
 
Back
Top