Tengo ya una macro para sacar copias según condicional pero me sale solo una impresión y quiero dos

Lo tengo así:

'imprime dejando en blanco los totales y según rangos usados
If [M97] >= 1 Then
'Agregar formato en blanco
Range("Q30:Q31").Font.Color = RGB(255, 255, 255)
Range("S30:S31").Font.Color = RGB(255, 255, 255)
Range("U30:U31").Font.Color = RGB(255, 255, 255)
Range("W30:W31").Font.Color = RGB(255, 255, 255)
Range("Q71:Q72").Font.Color = RGB(255, 255, 255)
Range("S71:S72").Font.Color = RGB(255, 255, 255)
Range("U71:U72").Font.Color = RGB(255, 255, 255)
Range("W71:W72").Font.Color = RGB(255, 255, 255)
ActiveSheet.PageSetup.PrintArea = "$C$1:$W$121"
ElseIf [M56] = "" Then
ActiveSheet.PageSetup.PrintArea = "$C$1:$W$40"
ElseIf [M56] >= 1 Then
'Agregar formato blanco
Range("Q30:Q31").Font.Color = RGB(255, 255, 255)
Range("S30:S31").Font.Color = RGB(255, 255, 255)
Range("U30:U31").Font.Color = RGB(255, 255, 255)
Range("W30:W31").Font.Color = RGB(255, 255, 255)

ActiveSheet.PageSetup.PrintArea = "$C$1:$W$80"
End If

Me sale muy bien, pero yo quiero que me saque dos impresiones de la condicional que se cumpla.

1 Respuesta

Respuesta
1

En este código que dejas solo se ve la instrucción donde le asignas el rango a imprimir (ActiveSheet.PageSetup.PrintArea = "--------" )

Luego falta la instrucción de impresión, algo así como:

ActiveSheet.PrintOut Copies:=2

Quizás en tu caso en lugar de ActiveSheet le estés indicando el nombre de la hoja... solo necesitas agregar el nro de copias.

Application.PrintCommunication = True
'imprime dejando en blanco los totales y según rangos usados
If [M95] >= 1 Then
'Agregar formato en blanco
Range("Q29:Q30").Font.Color = RGB(255, 255, 255)
Range("S29:S30").Font.Color = RGB(255, 255, 255)
Range("U29:U30").Font.Color = RGB(255, 255, 255)
Range("W29:W30").Font.Color = RGB(255, 255, 255)
Range("Q69:Q70").Font.Color = RGB(255, 255, 255)
Range("S69:S70").Font.Color = RGB(255, 255, 255)
Range("U69:U70").Font.Color = RGB(255, 255, 255)
Range("W69:W70").Font.Color = RGB(255, 255, 255)
ActiveSheet.PageSetup.PrintArea = "$C$1:$W$118"


ElseIf [M55] = "" Then
ActiveSheet.PageSetup.PrintArea = "$C$1:$W$39"

ElseIf [M55] >= 1 Then
'Agregar formato blanco
Range("Q29:Q30").Font.Color = RGB(255, 255, 255)
Range("S29:S30").Font.Color = RGB(255, 255, 255)
Range("U29:U30").Font.Color = RGB(255, 255, 255)
Range("W29:W30").Font.Color = RGB(255, 255, 255)

ActiveSheet.PageSetup.PrintArea = "$C$1:$W$78"
End If
 si le pongo la instrucción :

ActiveSheet.PrintOut Copies:=2

después de mi

Active Sheet.PageSetup.PrintAres_...

Me saca la impresión que ya mande y otras dos más no se como poner para que según el condicional Después del

ActiveSheet.PageSetup.PrintArea = "...  (o sea la condicional cumplida)

¿Me haga dos impresiones de la condicional que se cumplió?

En la parte del código que dejsaste no se encuentra la instrucción que imprime sólo la que asigna formatos y establece cual es el rango a imprimir... Por eso te agregue la de PrintOut.

Pero la debes estar colocando mal. Deja escrita aquí la macro completa hasta el End Sub para que pueda ver 'todas' tus instrucciones.

Si te saca la impresión que ya mandaste quiere decir que ya tenes una que dice PrintOut (o PrintPreview) y no necesitas agregarle otra... solo debes agregarle la cantidad de copias.

Sdos!

aquí mando completo lo que tengo, una disculpa  por como está hecho yo no sabía hace 5 meses usar Excel

Sub COT_PEDIDO_OPCION3()
''IMPRIME 2 COPIAS DE LA COTIZACIÓN COLUMNAS METROS A LA VISTA Y SALTA A PEDIDO FINCADO
'

Range("N1:W4").Select
With Selection.Font
.Name = "Calibri"
.Size = 12
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.TintAndShade = 0
.ThemeFont = xlThemeFontMinor
End With
With Selection.Font
.Name = "Calibri"
.Size = 12
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.TintAndShade = 0
.ThemeFont = xlThemeFontMinor
End With
Range("J14:W26").Select
With Selection.Font
.Name = "Calibri"
.Size = 12
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.TintAndShade = 0
.ThemeFont = xlThemeFontMinor
End With
With Selection.Font
.Name = "Calibri"
.Size = 12
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.TintAndShade = 0
.ThemeFont = xlThemeFontMinor
End With
Range("Q28:W32").Select
With Selection.Font
.Name = "Calibri"
.Size = 12
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.TintAndShade = 0
.ThemeFont = xlThemeFontMinor
End With
With Selection.Font
.Name = "Calibri"
.Size = 12
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.TintAndShade = 0
.ThemeFont = xlThemeFontMinor
End With
Range("N41:W44").Select
With Selection.Font
.Name = "Calibri"
.Size = 12
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.TintAndShade = 0
.ThemeFont = xlThemeFontMinor
End With
With Selection.Font
.Name = "Calibri"
.Size = 12
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.TintAndShade = 0
.ThemeFont = xlThemeFontMinor
End With
Range("Q54:W54").Select
With Selection.Font
.Name = "Calibri"
.Size = 12
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.TintAndShade = 0
.ThemeFont = xlThemeFontMinor
End With
With Selection.Font
.Name = "Calibri"
.Size = 12
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.TintAndShade = 0
.ThemeFont = xlThemeFontMinor
End With
Range("J56:W67").Select
With Selection.Font
.Name = "Calibri"
.Size = 12
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.TintAndShade = 0
.ThemeFont = xlThemeFontMinor
End With
With Selection.Font
.Name = "Calibri"
.Size = 12
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.TintAndShade = 0
.ThemeFont = xlThemeFontMinor
End With
Range("Q69:W73").Select
With Selection.Font
.Name = "Calibri"
.Size = 12
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.TintAndShade = 0
.ThemeFont = xlThemeFontMinor
End With
With Selection.Font
.Name = "Calibri"
.Size = 12
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.TintAndShade = 0
.ThemeFont = xlThemeFontMinor
End With
Range("N82:W85").Select
With Selection.Font
.Name = "Calibri"
.Size = 12
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.TintAndShade = 0
.ThemeFont = xlThemeFontMinor
End With
With Selection.Font
.Name = "Calibri"
.Size = 12
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.TintAndShade = 0
.ThemeFont = xlThemeFontMinor
End With
Range("Q95:W95").Select
With Selection.Font
.Name = "Calibri"
.Size = 12
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.TintAndShade = 0
.ThemeFont = xlThemeFontMinor
End With
With Selection.Font
.Name = "Calibri"
.Size = 12
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.TintAndShade = 0
.ThemeFont = xlThemeFontMinor
End With
Range("J97:W108").Select
With Selection.Font
.Name = "Calibri"
.Size = 12
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.TintAndShade = 0
.ThemeFont = xlThemeFontMinor
End With
With Selection.Font
.Name = "Calibri"
.Size = 12
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.TintAndShade = 0
.ThemeFont = xlThemeFontMinor
End With
Range("J97:W108").Select
With Selection.Font
.Name = "Calibri"
.Size = 12
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.TintAndShade = 0
.ThemeFont = xlThemeFontMinor
End With
With Selection.Font
.Name = "Calibri"
.Size = 12
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.TintAndShade = 0
.ThemeFont = xlThemeFontMinor
End With
Range("Q110:W114").Select
With Selection.Font
.Name = "Calibri"
.Size = 12
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.TintAndShade = 0
.ThemeFont = xlThemeFontMinor
End With
With Selection.Font
.Name = "Calibri"
.Size = 12
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.TintAndShade = 0
.ThemeFont = xlThemeFontMinor
End With
Range("D14:S26").Select
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.ThemeColor = xlThemeColorDark1
.TintAndShade = 0
.PatternTintAndShade = 0
End With
Range("D56:S67").Select
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.ThemeColor = xlThemeColorDark1
.TintAndShade = 0
.PatternTintAndShade = 0
End With
Range("D97:S108").Select
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.ThemeColor = xlThemeColorDark1
.TintAndShade = 0
.PatternTintAndShade = 0
End With
Range("J97:L108").Select
With Selection.Font
.ThemeColor = xlThemeColorDark1
.TintAndShade = 0
End With
Range("J56:L67").Select
With Selection.Font
.ThemeColor = xlThemeColorDark1
.TintAndShade = 0
End With
Range("J14:L26").Select
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.ThemeColor = xlThemeColorDark1
.TintAndShade = 0
.PatternTintAndShade = 0
End With
With Selection.Font
.ThemeColor = xlThemeColorDark1
.TintAndShade = 0
End With
'
Range("J14:L26").Select
With Selection.Font
.ColorIndex = xlAutomatic
.TintAndShade = 0
End With
Range("J56:L67").Select
With Selection.Font
.ColorIndex = xlAutomatic
.TintAndShade = 0
End With
Range("J97:L108").Select
With Selection.Font
.ColorIndex = xlAutomatic
.TintAndShade = 0
End With
Range("C1").Select
'PONE MARGENES
Application.PrintCommunication = False
With ActiveSheet.PageSetup
.PrintTitleRows = ""
.PrintTitleColumns = ""
End With
Application.PrintCommunication = True
ActiveSheet.PageSetup.PrintArea = "$C$1:$W$121"
Application.PrintCommunication = False
With ActiveSheet.PageSetup
.LeftHeader = ""
.CenterHeader = ""
.RightHeader = ""
.LeftFooter = ""
.CenterFooter = ""
.RightFooter = ""
.LeftMargin = Application.InchesToPoints(0.25)
.RightMargin = Application.InchesToPoints(0.25)
.TopMargin = Application.InchesToPoints(0.75)
.BottomMargin = Application.InchesToPoints(0.75)
.HeaderMargin = Application.InchesToPoints(0.3)
.FooterMargin = Application.InchesToPoints(0.3)
.PrintHeadings = False
.PrintGridlines = False
.PrintComments = xlPrintNoComments
.CenterHorizontally = True
.CenterVertically = False
.Orientation = xlLandscape
.Draft = False
.PaperSize = xlPaperLetter
.FirstPageNumber = xlAutomatic
.Order = xlDownThenOver
.BlackAndWhite = False
.Zoom = 70
.PrintErrors = xlPrintErrorsDisplayed
.OddAndEvenPagesHeaderFooter = False
.DifferentFirstPageHeaderFooter = False
.ScaleWithDocHeaderFooter = True
.AlignMarginsHeaderFooter = True
.EvenPage.LeftHeader.Text = ""
.EvenPage.CenterHeader.Text = ""
.EvenPage.RightHeader.Text = ""
.EvenPage.LeftFooter.Text = ""
.EvenPage.CenterFooter.Text = ""
.EvenPage.RightFooter.Text = ""
.FirstPage.LeftHeader.Text = ""
.FirstPage.CenterHeader.Text = ""
.FirstPage.RightHeader.Text = ""
.FirstPage.LeftFooter.Text = ""
.FirstPage.CenterFooter.Text = ""
.FirstPage.RightFooter.Text = ""
End With
Application.PrintCommunication = True
'imprime dejando en blanco los totales y según rangos usados
If [M97] >= 1 Then
'Agregar formato en blanco
Range("Q30:Q31").Font.Color = RGB(255, 255, 255)
Range("S30:S31").Font.Color = RGB(255, 255, 255)
Range("U30:U31").Font.Color = RGB(255, 255, 255)
Range("W30:W31").Font.Color = RGB(255, 255, 255)
Range("Q71:Q72").Font.Color = RGB(255, 255, 255)
Range("S71:S72").Font.Color = RGB(255, 255, 255)
Range("U71:U72").Font.Color = RGB(255, 255, 255)
Range("W71:W72").Font.Color = RGB(255, 255, 255)
ActiveSheet.PageSetup.PrintArea = "$C$1:$W$121"
ElseIf [M56] = "" Then
ActiveSheet.PageSetup.PrintArea = "$C$1:$W$40"
ElseIf [M56] >= 1 Then
'Agregar formato blanco
Range("Q30:Q31").Font.Color = RGB(255, 255, 255)
Range("S30:S31").Font.Color = RGB(255, 255, 255)
Range("U30:U31").Font.Color = RGB(255, 255, 255)
Range("W30:W31").Font.Color = RGB(255, 255, 255)

ActiveSheet.PageSetup.PrintArea = "$C$1:$W$80"
End If
'Convierte en PDF según criterios de impresión
ruta = ThisWorkbook.Path & "\"
ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, _
Filename:=ruta & "archivo.pdf", Quality:=xlQualityStandard, _
IncludeDocProperties:=True, IgnorePrintAreas:=False, OpenAfterPublish:=False
ActiveSheet.PrintOut 'imprime


Range("D14:F26").Select
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.ThemeColor = xlThemeColorAccent3
.TintAndShade = 0.599993896298105
.PatternTintAndShade = 0
End With
Range("J14:K26").Select
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.ThemeColor = xlThemeColorAccent3
.TintAndShade = 0.599993896298105
.PatternTintAndShade = 0
End With
Range("M14:M26").Select
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.ThemeColor = xlThemeColorAccent3
.TintAndShade = 0.599993896298105
.PatternTintAndShade = 0
End With
Range("S14:S26").Select
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.ThemeColor = xlThemeColorAccent3
.TintAndShade = 0.599993896298105
.PatternTintAndShade = 0
End With
Range("H14:I26").Select
With Selection.Font
.ThemeColor = xlThemeColorAccent5
.TintAndShade = -0.249977111117893
End With
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.ThemeColor = xlThemeColorAccent5
.TintAndShade = -0.249977111117893
.PatternTintAndShade = 0
End With
Range("G14:G26").Select
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.Color = 255
.TintAndShade = 0
.PatternTintAndShade = 0
End With
Range("O14:O26").Select
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.Color = 49407
.TintAndShade = 0
.PatternTintAndShade = 0
End With
Range("J14:L26").Select
With Selection.Font
.ColorIndex = xlAutomatic
.TintAndShade = 0
End With
Range("Q30:U32").Select
With Selection.Font
.ColorIndex = xlAutomatic
.TintAndShade = 0
End With
Range("W30:W32").Select
With Selection.Font
.Color = -16776961
.TintAndShade = 0
End With
Range("O56:O67").Select
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.Color = 49407
.TintAndShade = 0
.PatternTintAndShade = 0
End With
Range("D56:F67").Select
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.ThemeColor = xlThemeColorAccent3
.TintAndShade = 0.599993896298105
.PatternTintAndShade = 0
End With
Range("J56:K67").Select
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.ThemeColor = xlThemeColorAccent3
.TintAndShade = 0.599993896298105
.PatternTintAndShade = 0
End With
Range("M56:M67").Select
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.ThemeColor = xlThemeColorAccent3
.TintAndShade = 0.599993896298105
.PatternTintAndShade = 0
End With
Range("S56:S67").Select
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.ThemeColor = xlThemeColorAccent3
.TintAndShade = 0.599993896298105
.PatternTintAndShade = 0
End With
Range("H56:I67").Select
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.ThemeColor = xlThemeColorAccent5
.TintAndShade = -0.249977111117893
.PatternTintAndShade = 0
End With
Range("G56:G67").Select
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.Color = 255
.TintAndShade = 0
.PatternTintAndShade = 0
End With
Range("J56:L67").Select
With Selection.Font
.ColorIndex = xlAutomatic
.TintAndShade = 0
End With
With Selection.Font
.ColorIndex = xlAutomatic
.TintAndShade = 0
End With
Range("J56:L67").Select
With Selection.Font
.ColorIndex = xlAutomatic
.TintAndShade = 0
End With
Range("Q71:U73").Select
With Selection.Font
.ColorIndex = xlAutomatic
.TintAndShade = 0
End With
Range("W71:W73").Select
With Selection.Font
.Color = -16776961
.TintAndShade = 0
End With
Range("G97:G108").Select
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.Color = 255
.TintAndShade = 0
.PatternTintAndShade = 0
End With
Range("D97:F108").Select
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.ThemeColor = xlThemeColorAccent3
.TintAndShade = 0.599993896298105
.PatternTintAndShade = 0
End With
Range("J97:K108").Select
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.ThemeColor = xlThemeColorAccent3
.TintAndShade = 0.599993896298105
.PatternTintAndShade = 0
End With
Range("M97:M108").Select
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.ThemeColor = xlThemeColorAccent3
.TintAndShade = 0.599993896298105
.PatternTintAndShade = 0
End With
Range("S97:S108").Select
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.ThemeColor = xlThemeColorAccent3
.TintAndShade = 0.599993896298105
.PatternTintAndShade = 0
End With
Range("H97:I108").Select
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.ThemeColor = xlThemeColorAccent5
.TintAndShade = -0.249977111117893
.PatternTintAndShade = 0
End With
Range("O97:O108").Select
With Selection.Font
.Color = -16727809
.TintAndShade = 0
End With
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.Color = 1952255
.TintAndShade = 0
.PatternTintAndShade = 0
End With
Range("O97:O108").Select
With Selection.Font
.ColorIndex = xlAutomatic
.TintAndShade = 0
End With
Range("Q112:U114").Select
With Selection.Font
.ThemeColor = xlThemeColorLight1
.TintAndShade = 0
End With
Range("W112:W114").Select
With Selection.Font
.Color = -16776961
.TintAndShade = 0
End With
'PONER AREA DE IMPRESIÓN
Range("C1:W121").Select
ActiveSheet.PageSetup.PrintArea = "$C$1:$W$121"
Range("C1").Select
Sheets("EJEM. PEDIDO FINCADO").Select
'Desproteger hoja para poner el TOTAL
Hoja9.Unprotect "abc"
Range("G13").Select
ActiveCell.FormulaR1C1 = "='OPCIÓN 3'!R[101]C[16]"
Range("A1").Select

'
End Sub

ojalá me puedas ayudar

En primer lugar no debes pedir disculpas ... no es obligación saber programar.

Bien, en la siguiente sección de tu macro aparece 1 instrucción de impresión, allí debes indicar cuántas copias necesitas:

'Convierte en PDF según criterios de impresión
ruta = ThisWorkbook.Path & "\"
ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, _
Filename:=ruta & "archivo.pdf", Quality:=xlQualityStandard, _
IncludeDocProperties:=True, IgnorePrintAreas:=False, OpenAfterPublish:=False
ActiveSheet.PrintOut Copies:= 2      'imprime 2 copias

A continuación tenés más código asignando formatos, entiendo que quizás vuelvas a sus valores normales.

Además estableces nuevamente un área de impresión pero allí no hay instrucción PrintOut por lo que no se imprime desde aquí.

Sdos!

Añade tu respuesta

Haz clic para o

Más respuestas relacionadas