Need to create a report based on an open form

  • Thread starter Thread starter Rich Schoenfeld
  • Start date Start date
R

Rich Schoenfeld

I want to put a button on a form that prints a report based on the
informtaion from the form.

The problem is the form is not bound to a table. The information in the
textboxes are calculated in the OnCurrent event of the form.

Is there a way to reference the open form textboxes in the report.

Thanks,
Rich
 
Just wanted to let you know that I finally solved my problem...

In the detail section of the report.

I was able to:

dim frm as object
Set frm = Forms("FormName").Form

rptTextBox = frm.txtName


Thanks Anyways,
Rich
 

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