473,422 Members | 2,224 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,422 software developers and data experts.

Printing several records from a form - looping through

2
Hi

I've inherited an Access database where there is a form setup which prints out a Job Sheet. This works fine with one record. However I need to set it to loop through several records and print them all out programmatically.

This is my code which appears to work fine, but doesn't loop through the records, just prints off the first record however many times there are records to print. This is my code:
Expand|Select|Wrap|Line Numbers
  1. Private Sub cmdOK_Click()
  2. On Error GoTo Err_cmdOK_Click
  3.  
  4.     Dim stDocName As String
  5.     Dim stLinkCriteria As String
  6.     Dim db As DAO.Database
  7.     Dim rst As DAO.Recordset
  8.     Dim strdate As String
  9.     Dim strRanger As String
  10.     Dim qryName As String
  11.     Dim tblName As String
  12.     Dim strSQL As String
  13.     Dim i As Integer
  14.  
  15.     stDocName = "frmJobSheetTrimble"
  16.     tblName = "tblTempJobSheet"
  17.     qryName = "qryJobSheetByDate"
  18.  
  19.     strSQL = "delete from tblTempJobSheet"
  20.  
  21.     DoCmd.SetWarnings False
  22.     DoCmd.RunSQL strSQL
  23.  
  24.     DoCmd.OpenQuery qryName, acViewNormal ' This creates the temporary table to print the record from.
  25.  
  26.     Set db = CurrentDb()
  27.     Set rst = db.OpenRecordset("tbltempJobSheet")
  28.  
  29.     i = 0
  30.     MsgBox "You are about to print" & " " & Count & " " & "records.", vbOKCancel
  31.  
  32.     DoCmd.OpenForm stDocName, , , , , acWindowNormal
  33.  
  34.             rst.MoveFirst
  35.                 Do While Not rst.EOF
  36.                     i = i + 1
  37.                     If rst![SpecificRiskAss] = True Then
  38.                        DoCmd.PrintOut acPages, 1, 2, , , Yes
  39.  
  40.                     End If
  41.  
  42.                     If rst![SpecificRiskAss] = False Then
  43.                        DoCmd.PrintOut acPages, 1, 1, , , Yes
  44.                     End If
  45.  
  46.             rst.MoveNext
  47.         Loop
  48.  
  49.     rst.close
  50.  
  51.     Set rst = Nothing
  52.     Set db = Nothing
  53.  
  54.     DoCmd.SetWarnings True
  55.     DoCmd.close acForm, stDocName
  56.  
  57.     stDocName1 = "frmJobSheetPrinted"
  58.     DoCmd.OpenForm stDocName1, , , stLinkCriteria
  59.  
  60. Exit_cmdOK_Click:
  61.     Exit Sub
  62.  
  63. Err_cmdOK_Click:
  64.     MsgBox Err.Description
  65.     Resume Exit_cmdOK_Click
  66.  
  67. End Sub
  68.  
Any help gratefully appreciated.

Thanks
Sandra
Sep 5 '07 #1
4 2118
barry07
47
Hi Sandra,
The simplest solution is to modify the query (qryName) so it selects all the jobs you need instead of just one. You will also need to modify the PrintOut statement as follows:

Expand|Select|Wrap|Line Numbers
  1. DoCmd.PrintOut acPrintAll, , , , , Yes
I can't guarantee that this will necesssarily print one job per page. That's another day's work. Have you looked at Access Reports?
Sep 5 '07 #2
JKing
1,206 Expert 1GB
Hi there, I dont quite understand what you're doing here.

First you delete the temporary table, then open a query, open a form and start printing.

Is the query the form's recordsource? Also you don't need to open a query to use it as a recordset.

I believe the multiple copies of the same record is caused by printing the same page numbers over and over. No where in your code are you changing the page numbers or changing the records of the form.

Off the top of my head I think either a) incrementing the page numbers would help or b) filtering the form to equal each specific record print then move to the next record.
Sep 5 '07 #3
ske
2
Thanks for replying.

I can get the form to print out fine without the IF statements around the printout statement. The reference in the IF statement seems to be the problem.

I know the statements at the beginning are a bit round the houses but I can sort that out later. Unfortunately I need to print out each record one or two sided depending on whether SpecificRiskAss field is ticked.
Sep 6 '07 #4
JKing
1,206 Expert 1GB
You have a variable i that doesn't seem to be used. Upon adding the if statements did you accidentally remove it from the Docmd.PrintOut parameters? Instead of the 1 I think you may actually want to be using the i integer you've created.
Sep 6 '07 #5

Sign in to post your reply or Sign up for a free account.

Similar topics

6
by: Michael Goerz | last post by:
Hi, I'm trying to write a loop that cycles through all the records. This I use for doing comparisons between all records or to export all records to a text file. I'm using the following code: ...
6
by: John | last post by:
Hi, I have simple database based on 3 tables. Relationship is 'one to many' between table 1 and 2, also between 2 and 3 table'one to many'. I have made form where I enter data in all 3 tables....
4
by: Sami | last post by:
I hope someone will tell me how to do this without having to do any VB as I know nothing in that area. I am a rank beginner in using Access. I have created a database consisting of student...
6
by: MS | last post by:
Access 97 here. I want a simple way to "lock" certain records on a form. Some records remain "live" until all data is available which happens over time. When all the fields are complete, I want...
1
by: Earl Anderson | last post by:
Using WinXP & AccessXP, I'd like to automatically have the records that I've just printed in a report automatically updated to have the 'print date & time' immediately inserted into a 'Date/Time'...
3
by: MattB | last post by:
I have a RadioButtonList then binds to a DataTable in my Web Form. The DataTextField is called "descrip" and I want to bind only records that don;t have an empty descrip field. My initial...
20
by: Stewart Graefner | last post by:
Here is a chunk of code that works for an individual record. It evaluates dates and checks or unchecks boxes as it goes along. It may not be pretty but it works. What my problem is that I need it...
1
by: projectjakecs | last post by:
Hi, I am working on a ms access database and I am having trouble using a form to create new records in an associative table. Here is the breakdown of my database: Main Table - Computer...
2
by: Catch_22 | last post by:
Hi, I have a stored procedure that has to extract the child records for particular parent records. The issue is that in some cases I do not want to extract all the child records only a...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.