473,808 Members | 2,851 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Alternate Record Printing Between 2 Reports

I've been posting questions here the last week, but if you don't know my
situation:

I have a "Print Labels" button on the subform that sends the appropriate box
information on the subform to a report called "Labels." This is how we are
going to print our shipping labels. I also have a label which is a report
called "Destination_La bel" that contains the address where the shipment is
to be delivered. While each box label in the "Label" report is unique, the
destination label is the same for all the boxes in that shipment.

What I would like to do is print 2 copies of the box label and 1 copy of the
destination label in that order. For example, if I have 3 boxes on my
subform, I would like press a button that would cause the labels to print
like this:

Box Label 1, Box Label 1, Destination Label, Box Label 2, Box Label 2,
Destination Label, Box Label 3, Box Label 3, Destination Label

We print a lot of labels and it would be easier to apply the labels in order
instead of dealing with 2 stacks of labels. Again, each box label is unique,
but the destination label is the same for the entire shipment.

Is something like this possible? Help would be greatly appreciated.

Thanks,

Chad

Nov 13 '05 #1
3 1789
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Set up the report to have a group section for recipients. Make the
recipients group footer visible and put a TextBox control in it. Set
that control's ControlSource property to a TextBox on the form that
starts the print job. The form's TextBox will have the Destination
address. The ControlSource would look like this:

Control Source: =Forms!frmPrint Job!txtDestinat ion

Or you can use many TextBoxes to get Destination Address, City, State,
Postal Code, etc. Just use the same principle: Report's TextBoxes
Control Source points to the form's Destination info TextBoxes.

You have to play w/ the positioning of the Destination Text Box on the
report so it prints in the correct position on the label strip.

--
MGFoster:::mgf0 0 <at> earthlink <decimal-point> net
Oakland, CA (USA)

-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv

iQA/AwUBQlCCdYechKq OuFEgEQLmOACglj JLV5S+cOR5goYSI mRbuXFrSp0AoNUF
aPUQF5MMh6qV0G1 MIoA77c9g
=jrt4
-----END PGP SIGNATURE-----

ChadDiesel wrote:
I've been posting questions here the last week, but if you don't know my
situation:

I have a "Print Labels" button on the subform that sends the appropriate box
information on the subform to a report called "Labels." This is how we are
going to print our shipping labels. I also have a label which is a report
called "Destination_La bel" that contains the address where the shipment is
to be delivered. While each box label in the "Label" report is unique, the
destination label is the same for all the boxes in that shipment.

What I would like to do is print 2 copies of the box label and 1 copy of the
destination label in that order. For example, if I have 3 boxes on my
subform, I would like press a button that would cause the labels to print
like this:

Box Label 1, Box Label 1, Destination Label, Box Label 2, Box Label 2,
Destination Label, Box Label 3, Box Label 3, Destination Label

We print a lot of labels and it would be easier to apply the labels in order
instead of dealing with 2 stacks of labels. Again, each box label is unique,
but the destination label is the same for the entire shipment.

Is something like this possible? Help would be greatly appreciated.

Nov 13 '05 #2
Hello,

Thanks for responding, here is a picture of my labels:

http://www.chadworld.com/images/labels.jpg

and here is a picture of my form:

http://www.chadworld.com/images/form.jpg

I should have mentioned that there are only 4 locations (right now) that we
ship, so in the form, if you select San Diego as the destination, I have
query that feeds the destination label report. I have it set up so when you
hit the button on the subform, it prints the records only on the subform.
How would I print 2 labels then the destination in the correct order? I
don't quite follow you. Please bare with me as I am very new to access and
am trying to figure out things as I go.

Thanks,

Chad
"MGFoster" <me@privacy.com > wrote in message
news:so******** *********@newsr ead2.news.pas.e arthlink.net...
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Set up the report to have a group section for recipients. Make the
recipients group footer visible and put a TextBox control in it. Set
that control's ControlSource property to a TextBox on the form that
starts the print job. The form's TextBox will have the Destination
address. The ControlSource would look like this:

Control Source: =Forms!frmPrint Job!txtDestinat ion

Or you can use many TextBoxes to get Destination Address, City, State,
Postal Code, etc. Just use the same principle: Report's TextBoxes
Control Source points to the form's Destination info TextBoxes.

You have to play w/ the positioning of the Destination Text Box on the
report so it prints in the correct position on the label strip.

--
MGFoster:::mgf0 0 <at> earthlink <decimal-point> net
Oakland, CA (USA)

-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv

iQA/AwUBQlCCdYechKq OuFEgEQLmOACglj JLV5S+cOR5goYSI mRbuXFrSp0AoNUF
aPUQF5MMh6qV0G1 MIoA77c9g
=jrt4
-----END PGP SIGNATURE-----

ChadDiesel wrote:
I've been posting questions here the last week, but if you don't know my
situation:

I have a "Print Labels" button on the subform that sends the appropriate
box
information on the subform to a report called "Labels." This is how we
are
going to print our shipping labels. I also have a label which is a report
called "Destination_La bel" that contains the address where the shipment
is
to be delivered. While each box label in the "Label" report is unique,
the
destination label is the same for all the boxes in that shipment.

What I would like to do is print 2 copies of the box label and 1 copy of
the
destination label in that order. For example, if I have 3 boxes on my
subform, I would like press a button that would cause the labels to print
like this:

Box Label 1, Box Label 1, Destination Label, Box Label 2, Box Label 2,
Destination Label, Box Label 3, Box Label 3, Destination Label

We print a lot of labels and it would be easier to apply the labels in
order
instead of dealing with 2 stacks of labels. Again, each box label is
unique,
but the destination label is the same for the entire shipment.

Is something like this possible? Help would be greatly appreciated.

Nov 13 '05 #3
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Read the Access Help articles on "Sorting and Grouping Records on a
Report" and it's subcategories.

OR (a better idea)

You could set up a report that just has the Destination address in the
Details section and w/ a subreport that has the recipients address info.
Read the Access Help articles "Create a subreport." It's just like a
subform.

IOW, something like this on the report:

Detail section
=============== =========
Destination address
+--------------------+
| (subform) |
| Packing label 1 |
| Packing label 2 |
| <others labels> |
+--------------------+
=============== =========
--
MGFoster:::mgf0 0 <at> earthlink <decimal-point> net
Oakland, CA (USA)

-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv

iQA/AwUBQlCtoIechKq OuFEgEQIMkQCfdR 1WLHq9aMEP0pmye JnkUk2zf5kAoKXf
rw8xt8FCGm5jtPx 7mjYQ9NUl
=68z5
-----END PGP SIGNATURE-----

ChadDiesel wrote:
Hello,

Thanks for responding, here is a picture of my labels:

http://www.chadworld.com/images/labels.jpg

and here is a picture of my form:

http://www.chadworld.com/images/form.jpg

I should have mentioned that there are only 4 locations (right now) that we
ship, so in the form, if you select San Diego as the destination, I have
query that feeds the destination label report. I have it set up so when you
hit the button on the subform, it prints the records only on the subform.
How would I print 2 labels then the destination in the correct order? I
don't quite follow you. Please bare with me as I am very new to access and
am trying to figure out things as I go.

Thanks,

Chad
"MGFoster" <me@privacy.com > wrote in message
news:so******** *********@newsr ead2.news.pas.e arthlink.net...
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Set up the report to have a group section for recipients. Make the
recipients group footer visible and put a TextBox control in it. Set
that control's ControlSource property to a TextBox on the form that
starts the print job. The form's TextBox will have the Destination
address. The ControlSource would look like this:

Control Source: =Forms!frmPrint Job!txtDestinat ion

Or you can use many TextBoxes to get Destination Address, City, State,
Postal Code, etc. Just use the same principle: Report's TextBoxes
Control Source points to the form's Destination info TextBoxes.

You have to play w/ the positioning of the Destination Text Box on the
report so it prints in the correct position on the label strip.

--
MGFoster:::mg f00 <at> earthlink <decimal-point> net
Oakland, CA (USA)

-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv

iQA/AwUBQlCCdYechKq OuFEgEQLmOACglj JLV5S+cOR5goYSI mRbuXFrSp0AoNUF
aPUQF5MMh6qV0 G1MIoA77c9g
=jrt4
-----END PGP SIGNATURE-----

ChadDiesel wrote:
I've been posting questions here the last week, but if you don't know my
situation:

I have a "Print Labels" button on the subform that sends the appropriate
box
informatio n on the subform to a report called "Labels." This is how we
are
going to print our shipping labels. I also have a label which is a report
called "Destination_La bel" that contains the address where the shipment
is
to be delivered. While each box label in the "Label" report is unique,
the
destinatio n label is the same for all the boxes in that shipment.

What I would like to do is print 2 copies of the box label and 1 copy of
the
destinatio n label in that order. For example, if I have 3 boxes on my
subform, I would like press a button that would cause the labels to print
like this:

Box Label 1, Box Label 1, Destination Label, Box Label 2, Box Label 2,
Destinatio n Label, Box Label 3, Box Label 3, Destination Label

We print a lot of labels and it would be easier to apply the labels in
order
instead of dealing with 2 stacks of labels. Again, each box label is
unique,
but the destination label is the same for the entire shipment.

Is something like this possible? Help would be greatly appreciated.


Nov 13 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
3591
by: Paul Mendez | last post by:
I have a form that consists of 150 records and is still growing. there are times when I want to print a certain record of the form, say record 12. I go to file --> print and choose the page number of the record. But what I would like to do, to decrease the amount of mistakes of print all 150+ records, I would like a button to only print the record that is currently displayed on screen. I know it can be done, I just don't know how. Any...
5
1602
by: ken | last post by:
I had to reinstall Windows 2000 Pro and of course Access 2000. I HAD each record displaying a photo but now it does not show them. The WEIRD thing is that when I upload the database to my website...the image shows up! Is there a setting in Access that I need to chnage because of the reinstall? Thanks. Ken
20
2405
by: Greg | last post by:
I'm fairly new to access (using 2002) and am setting up a DB for work. along with each record the user also needs to make a flow diagram (previously, these reports were composed in word and they used the autoshapes to create this diagram). I was wondering what the best way to incorporate this into the DB. I have read about how saving them as pictures in the DB bloats the size, which is unacceptable, but it needs to be easy to do (not...
6
3319
by: Mike Conklin | last post by:
This one really has me going. Probably something silly. I'm using dcount for a report to determine the number of different types of tests proctored in a semester. My report is based on a parameter query which is the recordsource for the report. The parameter is <=. The query returns the correct amounts upto the date entered (no need for "between" dates here). There are 8 textboxes with dcounts; 2 other boxes Sum some of these
2
3310
by: Hers2keep | last post by:
I have a report that prints daily. The report needs to print whether or not there are records available. I read in an old post on this group that putting an unbound text box in the report footer, with the following code in the OnNoData event would work like a charm -- Private Sub Report_NoData(Cancel As Integer) Dim NoInboundLoads As TextBox Me!NoInboundLoads = "No inbound loads scheduled for today." Cancel = False End Sub
3
3176
by: buck | last post by:
reports/ can we alternate formatting such as "no shading" and then "shading" for multiple records such as a phone directory in Access2000 reports
12
20945
by: Wadim Grasza | last post by:
I want to store and display (on a form or a report) multiple pictures per record in an access database. The pictures are not stored within the database. They are stored as files and the database contains the paths to the pictures. The database consists of two tables: TABLE DATA ID Name LastName
0
5779
by: John Smith | last post by:
Hello, I have 7 different crystal reports that need to be collated. Since I want to end up with a page of each (which all together make a single report), I created a blank main report and then added the 7 as subreports so they can print one after the other. I'm supposed to be printing them from a VB.Net 2003 application and I will be passing 2 parameters (start and end dates). These reports are huge (over 1000+ pages each). My original...
9
2500
by: johkar | last post by:
I need some browser implementation clarification. In the below example, the alternate stylesheet could be invoked by user agents that support alternate stylesheets or by script. Are there any browsers that don't recognize "alternate stylesheet" as a value of the rel attribute and just implement it automatically thus overriding sheet2.css? Just need to know what I need to worry about. <link href="sheet1.css" rel="stylesheet"...
4
9676
by: Bad Horsey | last post by:
Windows XP MS Access 2000 Hello folks. First timer here. Have a problem with a form. I am trying to open a report using a button on a form. The report will use information from a table which is particular to the record being viewed on the form at the time. I want to include any data that the user has input into the form directly before clicking the button. For this reason, I am using the requery function in the macro before...
0
10631
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10374
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10114
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9196
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7651
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5548
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4331
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3859
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3011
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.