Report Title entry (1 Viewer)

Mmattson

Registered User.
Local time
Today, 14:00
Joined
Oct 28, 2002
Messages
46
I have set up some basic parameter queries for staff. I would like for them to be able to name their report. This only needs to be used once. If they use it again, they can type in a new report name. The format I would like in the Report Header is:


Main Title of Report
Subtitle of report
[Report Name]
-------------------------


What is the easiest/quickest way to accomplish this?
 

doran_doran

Registered User.
Local time
Today, 13:00
Joined
Aug 15, 2002
Messages
349
On Open Report Event...

step 1: You need to create a text box "unbound" for your header
txtHeader
step 2: On open method you can prompt user to type whatever in a pop up input box. (or may be a form)

step 3: me.txtheader.value = the message in the pop-up box.
or (if you are using a form)
me.txtheader.value = =[Forms]![frmheader].[txtheader]
(assuming you are using a form called frmheader and there is a text box called txtheader)


Good Luck
Dianna Goldsberg
=======================================================

I am just giving you the approach and you can find information here. Just do a search.
 
Last edited:

Users who are viewing this thread

Top Bottom