I have recorded a macro to print page 1 then page 2 on a non-duplex printer. I would like to have a box appear when I click on the Print Page 1 or Page 2 buttons in which I can type the number of copies required. Can I be advised please on how to do this?
This is the recorded macro:
Sub Printpage1()
‘
‘ Printpage1 Macro
‘ Macro recorded Thursday, 28 April 2005 by ME Walker
‘
Application.PrintOut FileName:=””, Range:=wdPrintRangeOfPages, Item:= _
wdPrintDocumentContent, Copies:=1, Pages:=”1″, PageType:=wdPrintAllPages, _
Collate:=True, Background:=True, PrintToFile:=False, PrintZoomColumn:=0, _
PrintZoomRow:=0, PrintZoomPaperWidth:=0, PrintZoomPaperHeight:=0
End Sub
Sub Printpage2()
‘
‘ Printpage2 Macro
‘ Macro recorded Thursday, 28 April 2005 by ME Walker
‘
Application.PrintOut FileName:=””, Range:=wdPrintRangeOfPages, Item:= _
wdPrintDocumentContent, Copies:=1, Pages:=”2″, PageType:=wdPrintAllPages, _
Collate:=True, Background:=True, PrintToFile:=False, PrintZoomColumn:=0, _
PrintZoomRow:=0, PrintZoomPaperWidth:=0, PrintZoomPaperHeight:=0
End Sub