How do I print my name on a page at the bottom?

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

Guest

I am doing homework for my Access class and i need to print the pages with my
name on them and i am not sure how to do it.
 
Open your report in design mode, select View - Page Footer; put you name in
a text box in the page footer and it will print on the bottom of each page.
-Ed
 
missbehaved528 said:
T.Y. Is there any way i can do it on all pages and not just reports?

No. Reports are what get printed. Tables, Modules, etc., are there for
other purposes; you can print some information about them, but they have
functions that have nothing to do with printing.

HOWEVER, you can do some tricky stuff to identify your objects. :-)

For example, in each of your Tables or Queries, you could include an
empty [missbehaved] field. That name would show up in printed versions.

On a Form, you can stick a Label that displays "missbehaved" somewhere.

In a Macro, you could include a "MsgBox" step whose "Message" property
is "missbehaved".

In VB code, you could (and I think you should) include comments
identifying you as the author/maintainer of each module.

Have fun!

-- Vincent Johns <[email protected]>
Please feel free to quote anything I say here.
 
Back
Top