G
Guest
I would like for a command button on a form to print 2 copies of a report. I
have figured out a way but it seems like "sloppy" programming. I have
repeated the command twice:
Dim stDocName As String
stDocName = "Student Suspension"
DoCmd.OpenReport stDocName, acNormal
DoCmd.OpenReport stDocName, acNormal
Is there a better way or is this acceptable in programming?
have figured out a way but it seems like "sloppy" programming. I have
repeated the command twice:
Dim stDocName As String
stDocName = "Student Suspension"
DoCmd.OpenReport stDocName, acNormal
DoCmd.OpenReport stDocName, acNormal
Is there a better way or is this acceptable in programming?