Is it possible to make your own print queue?
I've made a form that can't be printed the normal way.
If i want to print out all records i have to do the following:
DoCmd.PrintOut acSelection
DoCmd.GoToRecord , , acNext
I've got 51 records, so in this case it means i've got 51 print jobs. I'd...