Need help with checkboxes to print particular reports

Uvuriel03

Registered User.
Local time
Today, 07:59
Joined
Mar 19, 2008
Messages
115
I have a whole bunch of reports that have parameter queries to specify data between two dates.

The setup is this. I have a forum with two unbound Text Boxes, one for Start Date, one for End Date. Each report is based off of a query, in which I have the date criteria set to pull from my unbound boxes.

Now what I would like to do is set up a bunch of check boxes to select which reports the user would like to print. Unfortunately, I do NOT know how to go about this.

If you give me any coding, please be very specific as I do not know how to write or use any.

Thanks!
 
One way:

Code:
If (Me.chkReport1) Then
  'code to print report 1
End If

If (Me.chkReport2) Then
  'code to print report 2
End If
 

Users who are viewing this thread

Back
Top Bottom