M
MexCham
I need to direct Access 07 to start printing with a certain label on the
sheet. I have reviewed the thread "choose label to start printing" on this
site, which gives the following instructions that were helpful to the person
that asked the question:
"First make sure your label report is properly printing a full sheet of
labels.
Then add a Report Header to your label report.
Add 2 text boxes to the Header.
1) Name one SkipControl
Leave it's control source unbound
2) Name the other SkipCounter
Set it control Source to =[Skip How Many?]
Now code the Report Header Format event as below:
Private Sub ReportHeader_Format(Cancel As Integer, FormatCount As
Integer)
[SkipControl] = "Skip"
Cancel = True
End Sub
==========
Next code the Detail OnPrint event:
Private Sub Detail_Print(Cancel As Integer, PrintCount As Integer)
If PrintCount <= [SkipCounter] And [SkipControl] = "Skip" Then
Me.NextRecord = False
Me.PrintSection = False
Else
[SkipControl] = "No"
Me.PrintSection = True
Me.NextRecord = True
End If
End Sub
=====
When you are ready to run the label report, it will ask how many to
skip.
Then it will run the report."
However, after I enter how many to skip, I get the message:
"Run-time error '2465':
Microsoft Office Access can't find the field "|" referred to in your
expression."
When I choose Debug, the line [SkipControl] = "Skip" is highlighted.
I copied everything straight out of the post and pasted it in, and I've
compared everything just to be sure it's not a typo. What did I do wrong?
Thanks!
sheet. I have reviewed the thread "choose label to start printing" on this
site, which gives the following instructions that were helpful to the person
that asked the question:
"First make sure your label report is properly printing a full sheet of
labels.
Then add a Report Header to your label report.
Add 2 text boxes to the Header.
1) Name one SkipControl
Leave it's control source unbound
2) Name the other SkipCounter
Set it control Source to =[Skip How Many?]
Now code the Report Header Format event as below:
Private Sub ReportHeader_Format(Cancel As Integer, FormatCount As
Integer)
[SkipControl] = "Skip"
Cancel = True
End Sub
==========
Next code the Detail OnPrint event:
Private Sub Detail_Print(Cancel As Integer, PrintCount As Integer)
If PrintCount <= [SkipCounter] And [SkipControl] = "Skip" Then
Me.NextRecord = False
Me.PrintSection = False
Else
[SkipControl] = "No"
Me.PrintSection = True
Me.NextRecord = True
End If
End Sub
=====
When you are ready to run the label report, it will ask how many to
skip.
Then it will run the report."
However, after I enter how many to skip, I get the message:
"Run-time error '2465':
Microsoft Office Access can't find the field "|" referred to in your
expression."
When I choose Debug, the line [SkipControl] = "Skip" is highlighted.
I copied everything straight out of the post and pasted it in, and I've
compared everything just to be sure it's not a typo. What did I do wrong?
Thanks!