How to Show File Print Setup Dialog Box using Word VBA
The following code displays the Print Setup Dialog
Sub Show_PrintSetup()
With Dialogs(wdDialogFilePrintSetup)
.Show
End With
- Login or register to post comments
- Feed: vbadb feed
- Original article
The following code displays the Print Setup Dialog
Sub Show_PrintSetup()
With Dialogs(wdDialogFilePrintSetup)
.Show
End With