Report.

S

Sigh

I was wondering if there was any way that I could create a
report base on the items on the listbox of the form?

Here's my statment but is not working.

Docmd.OpenReport "ReportName",,,"[ID] = Forms![frmMain]!
[listBox].value

Any help would be very appreciated.
 
F

fredg

Sigh said:
I was wondering if there was any way that I could create a
report base on the items on the listbox of the form?

Here's my statment but is not working.

Docmd.OpenReport "ReportName",,,"[ID] = Forms![frmMain]!
[listBox].value

Any help would be very appreciated.
It's probably a printer problem.
What happens if you format the trend line a bit heavier?
Or.. Change the Spooling settings?
Or.. Print directly to the printer?
 
F

frank

-----Original Message-----
I was wondering if there was any way that I could create a
report base on the items on the listbox of the form?

Here's my statment but is not working.

Docmd.OpenReport "ReportName",,,"[ID] = Forms![frmMain]!
[listBox].value

Any help would be very appreciated.
.
Looks like a syntax error, try:
Docmd.OpenReport "ReportName",,,"[ID] = " & Forms!
[frmMain]![listBox].value
 

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

Top