J
Jay
I have the following code in the OnOpen Event of my report:
Dim strRecordSource as string
strRecordSource = "SELECT * FROM tblExample1;"
Me.RecordSource = strRecordSource
strRecordSource = "SELECT * FROM tblExample2;"
Me.RecordSource = strRecordSource
strRecordSource = "SELECT * FROM tblExample3;"
Me.RecordSource = strRecordSource
strRecordSource = "SELECT * FROM tblExample4;"
Me.RecordSource = strRecordSource
Is there a way I can printout report. Change the
recordsource print out the same report upto 4 times.
I know I can't close the report because the OnOpen Event
will start over.
Dim strRecordSource as string
strRecordSource = "SELECT * FROM tblExample1;"
Me.RecordSource = strRecordSource
strRecordSource = "SELECT * FROM tblExample2;"
Me.RecordSource = strRecordSource
strRecordSource = "SELECT * FROM tblExample3;"
Me.RecordSource = strRecordSource
strRecordSource = "SELECT * FROM tblExample4;"
Me.RecordSource = strRecordSource
Is there a way I can printout report. Change the
recordsource print out the same report upto 4 times.
I know I can't close the report because the OnOpen Event
will start over.