Header design in mde

  • Thread starter Thread starter ANSWER
  • Start date Start date
A

ANSWER

Hi

Is it possible to enable header design in reports (MDE
file) Access 2002/03.

How?

Thanks
 
You cannot open reports (or any object) in design view in an MDE.

However, if you are comfortable with writing VBA code, you can use the
events of the report to:
- Assign a value to an unbound control, or a string to the Caption of a
label;
- Resize the section;
- change the font and other properties of the control;
- assign/reassign the ControlSource of text boxes;
- reassign the ControlSource of the grouping sections.

Without code, you could:
- use a DLookup() in the ControlSource to read a value from a table;
- use an expression in the ControlSource to read a value from a form, e.g.:
=Forms!MyForm!MyTextbox
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top