Label Counter for printing

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to setup a counter for printing labels.
I have form that listing the Employee name field and checkbox [PrintLabel].
I need to display the number of labels selected in a textbox everytime the
user check the PrintLabel checkbox.

Thank You
 
hi,
if i understand correctly, you want the user to specify
how many labels to print out?

DoCmd.PrintOut , , , , Me.textbox1

the above commant will print out the number of labels you
have in the text box on your form.

If this is not what you want, please reword your question.
 
No that is not correct. I do not want the user to specify anything. The
textbox called "LabelCounter" needs to show how many labels selected for
print.

Example if three checkbox are selected then the LabelCounter box should read
three.

I hope this is clearer.

Thank you




hi,
if i understand correctly, you want the user to specify
how many labels to print out?

DoCmd.PrintOut , , , , Me.textbox1

the above commant will print out the number of labels you
have in the text box on your form.

If this is not what you want, please reword your question.

-----Original Message-----
I need to setup a counter for printing labels.
I have form that listing the Employee name field and checkbox [PrintLabel].
I need to display the number of labels selected in a textbox everytime the
user check the PrintLabel checkbox.

Thank You
.
 
Back
Top