How do I populate textboxes (on a report) from module variables?

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

Guest

Hi,

I have several textboxes on a report in Access 2000. Upon running the
report, I'd like populate each textbox with a different VBA variable from an
Access module. (not a form or report module)

Does anyone have any ideas?

A backup plan is to run a seperate query for each of about 83 different
textboxes when the report is run but this doesn't seem practical.

Thanks,

Mike
 
You could create a function that returns the variable and then set the
control source of the text box to the function.
 
Back
Top