|
-
Mar 12th, 2007, 08:15 AM
#1
Thread Starter
Hyperactive Member
CR and Labels [RESOLVED]
Well I just purchased the latest CR and I have a question.
I am developing a program in vb2005 that will print some labels.
I used CR Mailing Label report wizard to make a custom label there will be 5 labels on one sheet. I would like to know how i print to maybe just the 3rd label in the row.
What i am trying to achieve is if the user did not print a full sheet of labels I want them to be able to select where to start on the sheet so that they labels are not wasted.
Thanks
Last edited by melvin74; Mar 13th, 2007 at 10:02 AM.
-
Mar 12th, 2007, 10:36 AM
#2
Frenzied Member
Re: CR and Labels
Could you add blank records to your datasource temporarily?
-
Mar 12th, 2007, 11:36 AM
#3
Thread Starter
Hyperactive Member
Re: CR and Labels
 Originally Posted by Besoup
Could you add blank records to your datasource temporarily?
That could be an option. I might have to experiment around with that.
Thanks
-
Mar 12th, 2007, 03:26 PM
#4
Re: CR and Labels
Another option.
Add a parameter to the report which indicates the Record/Label # where printing will begin.
Instead of printing the database fields directly, create a formula for each field. Each Formula returns either an empty string or the database field, depending on the record #. Eg.
Code:
IF RecordNumber < {?StartLabel} Then
""
Else
{Customers.Address}
-
Mar 13th, 2007, 07:00 AM
#5
Frenzied Member
Re: CR and Labels
Bruce, wouldn't that skip some records from being displayed?
-
Mar 13th, 2007, 09:55 AM
#6
Re: CR and Labels
Yes, you are correct. You don't want to skip records just labels. Not sure what I was thinking with that solution.
-
Mar 13th, 2007, 10:01 AM
#7
Thread Starter
Hyperactive Member
Re: CR and Labels
I am pretty content with the blank records, that should fit my needs very well. Thanks for all help.
-
Mar 22nd, 2007, 11:19 AM
#8
Addicted Member
Re: CR and Labels [RESOLVED]
Hi Guys -
I have the same question, but my label design includes a picture.
Using the above method, how can I suppress the picture if the field is blank?
Thanks!
-
Mar 22nd, 2007, 12:04 PM
#9
Thread Starter
Hyperactive Member
Re: CR and Labels [RESOLVED]
 Originally Posted by Set me As newtype
Hi Guys -
I have the same question, but my label design includes a picture.
Using the above method, how can I suppress the picture if the field is blank?
Thanks! 
You should be able to right click on graphic and choose format graphic.
Click the common tab and you will see something that says Suppress.
To the right of that you can click on the formula editor to add some condition.
-
Mar 22nd, 2007, 12:29 PM
#10
Addicted Member
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|