From forms to Report

  • Thread starter Thread starter Alex Ng
  • Start date Start date
A

Alex Ng

Hi,

I've created a form with lots of unbound textboxes where they display
results of calculations after hitting a command button (with a lot of code
behind it.)

Is there a way to "transfer" all the values within the text boxes onto the
report for printing??

Thanx,
Alex
 
Alex,
One way is to have an unbound control on the report for each unbound control
in the form that has a calculation.
Set the Control source of each control to:
=forms!FormName!ControlName

The form must be open when the report is run.
 
Back
Top