Three copies of the same entry on a single page report

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

Guest

I am trying to create a report that would give me three (same) copies of an
inputted entry. Of course, I would create a querie that would just bring up
new inputs to srink the printing. Im trying to almost have a carbon copy of
a report but on one page.
 
Romanm said:
I am trying to create a report that would give me three (same) copies
of an inputted entry. Of course, I would create a querie that would
just bring up new inputs to srink the printing. Im trying to almost
have a carbon copy of a report but on one page.

Hi you have to use the proprierty printcount
Put an textbox called quantita
in the report and set it as not visible
Private Sub Corpo_Print(Cancel As Integer, PrintCount As Integer)
If PrintCount < Me.ct_quantita Then
Me.NextRecord = False
PrintCount = PrintCount + 1
Else
PrintCount = 0
End If
End Sub

Then of course you have only open the report filtered



--
_ _
Ciao
MAssimiliano Amendola
Cisa1 - I° Conferenza Italiana per Sviluppatori Access Arezzo 4+5
Giugno 2005 Sono aperte le iscrizioni Info: www.donkarl.com/it
 
Back
Top