473,426 Members | 1,458 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,426 software developers and data experts.

Printing sheet of labels not working

Access 97, trying to print on Avery 5260 label sheet.

I used the label wizard and told it the query to use. The results give
me what I want on the label however when I hit print or print preview,
all I see is 1 label in the upper left corner. Why isn't the entire
sheet filled with the same information as what is in the first label?

I want every label to ahve the same information in it.

Thanks

Dec 2 '05 #1
7 1653
On 2 Dec 2005 11:45:12 -0800, Bruce Lawrence wrote:
Access 97, trying to print on Avery 5260 label sheet.

I used the label wizard and told it the query to use. The results give
me what I want on the label however when I hit print or print preview,
all I see is 1 label in the upper left corner. Why isn't the entire
sheet filled with the same information as what is in the first label?

I want every label to ahve the same information in it.

Thanks


How would Access know you want a full sheet of the same label unless
you tell it?

Do an advanced search at
http://www.groups.google.com

Search for all the words
Repeat Labels
in the *access*
newsgroups.

You'll find lots of information.
--
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail
Dec 3 '05 #2
It wouldn't know unless I told it or knew how to tell it hence the
reason why I posted the issue on this group. Thanks for the link.

Dec 3 '05 #3
Ted
Another option would be to create a work table in your application
database. Run the append query X number of times, or write code to find
and append the record to your work table. Then base the label report on
the work table.
I don't know how efficient running a query X number of times would be,
but it would certainly assure you had just one name on your label for
the number of times you want it.
Let's say there are 30 labels per sheet.
I would run code similar to this to just run the query:
DoCmd.RunSQL "DELETE * FROM twrkRecordsForLabel" 'Clear the work table
of any old data
For X = 1 to 30
DoCmd.OpenQuery "qappRecordsForLabel" 'Appends the record based on
the criteria to the work table
Next X
DoCmd.OpenReport "rptLabels5260" 'Print the labels

Ted

Dec 3 '05 #4
nah, there's code in Access Developer's Handbook that will print a
varying number of labels for each record. I think you need to get the
book to get it, but I've never heard of anyone saying he didn't get his
money's worth...

Dec 3 '05 #5

<pi********@hotmail.com> wrote in message
news:11**********************@z14g2000cwz.googlegr oups.com...
nah, there's code in Access Developer's Handbook that will print a
varying number of labels for each record. I think you need to get the
book to get it, but I've never heard of anyone saying he didn't get his
money's worth...


I just looked at Amazon. There are a bunch of used copies of The Access 97
Developers Handbook starting at $5.25. Most, but not all!, included the CD.
It's a superb book.

Dec 3 '05 #6
On 2 Dec 2005 11:45:12 -0800, "Bruce Lawrence" <BL*****@gmail.com> wrote:
Access 97, trying to print on Avery 5260 label sheet.

I used the label wizard and told it the query to use. The results give
me what I want on the label however when I hit print or print preview,
all I see is 1 label in the upper left corner. Why isn't the entire
sheet filled with the same information as what is in the first label?

I want every label to ahve the same information in it.

Thanks


You can used a query with a cartesian join.
Create a table (tblLabelNos) with one field (LabelNo) and add one record for each lable you want to print.
1,2,3,4.....30
Add this table to the recordsource of the report with no joins to any other table.
When the report is run, the recordsource will return one record for every record in tblLabelNo's. You can adjust how
many copies of each lable are printed by controling the number of records in tblLabelNos.
Dec 4 '05 #7
Thank you Wayne! I knew exactly what you were talking about and didn't
even think of doing it.

It works beautifully. I simply dont show the labelno field on the
report. What I'm going to do is create a module to ask the user how
many labels they need and pre-calculate the number of sheets to print.

Thanks again !

Dec 5 '05 #8

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

Similar topics

2
by: DBQueen | last post by:
I have a database which will be printing out labels for SMALL test tubes (1/4" high). We have yet to find a reasonably-priced printer (labelwriter) which can effectively print this on ROLLS of...
3
by: Grim Reaper | last post by:
I print mailing labels out of Access 2000 databases about 3 to 4 times a week. I have been having problems with one thing since I have been printing mailing labels. I print mailing labels by...
4
by: Arif | last post by:
I C# code prints very slow as compared to a third party barcode printing software. That software prints approximately 10 labels in 2 seconds while my C# code prints 10 labels in 5 to 6 seconds. And...
3
by: Mika M | last post by:
Hi all! I have made an application for printing simple barcode labels using PrintDocument object, and it's working fine. Barcode printer that I use is attached to the computer, and this...
6
by: MJ | last post by:
Is it possible to print varying numbers of labels from Access?
6
by: Ron | last post by:
Hi, I know Access allows for easy construction of a report setup to print labels from a table/query, etc. I've done that one. It works pretty well for what I need. However, is there an...
3
by: ninaschadha | last post by:
I have a report which is based on a query with Customers table and Invoiceline Items table. I want to print more than one label if the number of line Items are more than 10. I need to know where to...
3
by: xnay | last post by:
Greetings, I'm a Draftsman / IT at a thriving custom cabinet business. We use high dollar ($600 per 1000) labels (52 per sheet) as a means of keeping track of each piece of the cabinet during...
29
by: FredBear | last post by:
I am just coming to grips with php, Dreamweaver and MySQL and I want to make a facility available for the members of the group I am creating my web site for. I want them to be able to print-out a...
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
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...
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
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,...
0
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...
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...
0
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...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

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.