Printing Emergency

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

Guest

the following is the VB code I am using to print records from my database. I
need to be able to print multiple records at one time, how can I do this.
Normally the form can have anywhere between 5 to 100 records. Right now I
have to select each record one at a time in order to print. Please help.

Dim stDocName As String
stDocName = "Call Profile - Individual Call"
DoCmd.OpenReport stDocName, acViewNormal

Thank you so much for your assistance
 
the following is the VB code I am using to print records from my database. I
need to be able to print multiple records at one time, how can I do this.
Normally the form can have anywhere between 5 to 100 records. Right now I
have to select each record one at a time in order to print. Please help.

Dim stDocName As String
stDocName = "Call Profile - Individual Call"
DoCmd.OpenReport stDocName, acViewNormal

Thank you so much for your assistance

Make a copy of the report which is (badly mis-)named "Call Profile -
Individual Call". Change the Query upon whihc it is based to use criteria
which return the records that you want to see. Knowing nothing about your
database design or the structure of your form, I don't know what those
criteria might be - but take a look at your Form's recordsource property for a
good start.

John W. Vinson [MVP]
 

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

Similar Threads

Report printing 1
Report printing 15
Report printing 1
Printing report to PDF file 5
VB code 1
Report Missing Data 2
Report printing problem 2
how do i get only one record to print 9

Back
Top