Printing date only in a form

BF1

Registered User.
Local time
Today, 15:41
Joined
Feb 27, 2004
Messages
12
Hope you can help - I am currently entering customer information in a form and would like to print the data entered which would then allow it to be used on a pre printed form as well as stored in the DB. The only problem is that the title of each piece of data ("name" "address" ) is printed along with the actual name and address of the person (also prints the command buttons) - anyone know how to print the data entered only ? Thanks in advance
 
Try creating a report that exactly matches the form, but without the buttons and print eh report.

Or

before printing hide the parts of the form you dont want

ie

command1.visible = false
 
Or just set the Display When property of each control to either Screen Only, Print Only, or Always accordingly.
 
Result

Many thanks - the display when option worked just fine.
 

Users who are viewing this thread

Back
Top Bottom