The syntax would be just this.
Code:
Dim intCount As Integer
For intCount = 1 To Me!txtNumPrint.Value
CurrentDB.Execute "qapp_MyLabels"
Next
"qapp_MyLabels" is a query that appends the information needed for the labels to a temporary table. It just iterates up to the count that is entered in the text box and will run the query that # of times. You would just need to delete the records in the temp table before you run it each time.

Originally Posted by
bosve73
I know how to make a form and insert a text box but I don't understand the rest of the procedure.