I have 11 inch X 8.5 inch paper to print labels. The paper is divided into two columns i.e 4.25 width of each column containing 11 labels in each.
So, Size of each label is 1 inch X 4.25 inch
.
Now my Question is: I'm using Northwind DB in MS Access 2010, in that considering the table dbo_Products, I want to print Product ID and Product Name on each label.
I could join the label report to form but i couldn't get output.
As said earlier The sheet contains two columns, if user wants to print label on specific label position it should be able to print on that.
(Ex. User wants to print Product ID: 10 on the position 5, the corresponding product info must be print on the label located on the 5th position of the page. (the positioning of labels on the page is shown below)
1 | 2
3 | 4
5 | 6
7 | 8
...... till 22
It would be great if anyone could help me out in this issue by showing the connectivity between the form to label and print it in specific label place.
Thank you
Start with the instructions found at http://www.techrepublic.com/blog/how-do-i/how-do-i-start-an-access-label-report-with-any-label-on-the-sheet/
Next I modified that to have three textboxes instead of one. They are named 'txtStart', 'txtEnd', 'txtLabelPos'. Use the code below for that form.
Note the 'WHERE' clause in the SQL... change the tables / field names to suit your own needs.