|
|
Печать только определенных страниц отчета с заданным кол-вом экземпляров
Dim intPgStart As Integer
Dim intPgEnd As Integer
Dim intCop As Integer
intPgStart = 1
intPgEnd = 3
intCop = 2
DoCmd.OpenReport "ОтчетПродаж", acPreview, , , acHidden
DoCmd.PrintOut acPages, intPgStart, intPgEnd, , intCop, False
DoCmd.Close acReport, "ОтчетПродаж"
|
|