printing a variable

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

What is the proper way to print the value of a variable calculated in vb in a
control box on a report?
 
Stefan

I'm not sure what you are asking. If your report has a control on it,
printing the report would show the value.

Regards

Jeff Boyce
<MS Office/Access MVP>
 
Depends on the calculation. You may be able to set the control source to a
function like:
=GetFirstPayment([FieldA],[FieldB])

You may need to use an unbound control and set the control to a memory
variable in the On Format event of the section containing the control:
Me.txtFirstPayment = curMyMemoryVariable
 
Back
Top