I hope someone can help with this:
When I try to preview/or print a record report label, I always get an empty black label. Is this a page layout problem? It happens on all labels reports. I access the preview/print from a button with the following event procedure:
Private Sub Label290_Click()
Dim strCriteria As String
strCriteria = "[QME/AME Information]![lastname]=[Forms]![QME/AME Information]![lastname]"
DoCmd.OpenForm "Notification Form", acNormal, , strCriteria
End Sub
When I try to preview/or print a record report label, I always get an empty black label. Is this a page layout problem? It happens on all labels reports. I access the preview/print from a button with the following event procedure:
Private Sub Label290_Click()
Dim strCriteria As String
strCriteria = "[QME/AME Information]![lastname]=[Forms]![QME/AME Information]![lastname]"
DoCmd.OpenForm "Notification Form", acNormal, , strCriteria
End Sub