Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to let users change an unbound label of a report? 1

Status
Not open for further replies.
Apr 7, 2001
1
US
I have six reports which use queries to get data. On top of the report I have some labels which need to be changed according to the date. I would like the user to be able to customize the labels whenever they have new data?
 
Hi Krishnadev!

Add a text box to your Page Header for each of your issues.

In the Page Header section "format" event (in VB) add something like this for each of the text boxes you add:

Me![NameOfATextBox] = InputBox("PlaceYourQuestionHere", "PlaceYourInputBoxCaptionHere")

Will work just fine. ;-) Gord
ghubbell@total.net
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top