how to hide id from form in report to print

SalmanZeiad

Member
Local time
Today, 15:36
Joined
Oct 30, 2017
Messages
112
>>>event>>On Load >>> hide id
 

Attachments

  • Annotation 2020-11-22 122736.jpg
    Annotation 2020-11-22 122736.jpg
    65.4 KB · Views: 161
can you set it's (the textbox) Visible property to No.
 
>>>event>>On Load >>> hide id
Have you tried the clicking the visible property of the field you wish to have as not visible , go to design mode of the report and click on the field , and under format you should see the visible property .

Best of Luck

ops i was too slow Arnelgp beat me to it.
Regard Ypma
 
make a Copy of this form and use the Copy on your report.
 
if you are concern about making another copy of form will bloat your db.
it does not. in fact you can create as many form as you like.
using "single" form is better, but i'm afraid it won't be doable in Report.
 
if you are concern about making another copy of form will bloat your db.
it does not. in fact you can create as many form as you like.
using "single" form is better, but i'm afraid it won't be doable in Report.
thank you
 
Form controls have a Display When property. Three settings Alway (Default), Print Only, Screen Only.

Set it to Screen only.
 
Forms are meant for display, and reports are meant for printing. It's best to use the correct tool for the right job. Just my 2 cents...
 
Forms are meant for display, and reports are meant for printing. It's best to use the correct tool for the right job. Just my 2 cents...
@theDBguy Absolutely, couldn't agree more.
Just being a Sunday couldn't be bothered to argue about it. :rolleyes:
 
@theDBguy Absolutely, couldn't agree more.
Just being a Sunday couldn't be bothered to argue about it. :rolleyes:
@Minty No offense intended. I wasn't trying to argue with anyone. Just voicing my humble opinion (2 cents worth). Cheers!
 
'To show the ID control if used in a subform of a form and hide it in the report

Code:
me.id.visible = (TypeOf me.Parent Is Access.Form)
 

Users who are viewing this thread

Back
Top Bottom