Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
how do i select various paragraphs on the same page to be printed i can only
highlight one paragraph at a time many thanks |
#2
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
While you can select non-contiguous selections by holding the CTRL key
whilst making the selections, you cannot readily print such a selection from the print dialog. The following macro will however print it. Sub PrintSelected() Application.ScreenUpdating = False On Error GoTo Oops Selection.Copy Documents.Add Selection.Paste With ActiveDocument .PrintOut .Close wdDoNotSaveChanges End With Application.ScreenUpdating = True End Oops: MsgBox "Select the text you wish to copy first!" Application.ScreenUpdating = True End Sub http://www.gmayor.com/installing_macro.htm -- Graham Mayor - Word MVP My web site www.gmayor.com Word MVP web site http://word.mvps.org "bay" wrote in message ... how do i select various paragraphs on the same page to be printed i can only highlight one paragraph at a time many thanks |
#3
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
While you can select non-contiguous selections by holding the CTRL key
whilst making the selections, you cannot readily print such a selection from the print dialog. The following macro will however print it. Sub PrintSelected() Application.ScreenUpdating = False On Error GoTo Oops Selection.Copy Documents.Add Selection.Paste With ActiveDocument .PrintOut .Close wdDoNotSaveChanges End With Application.ScreenUpdating = True End Oops: MsgBox "Select the text you wish to copy first!" Application.ScreenUpdating = True End Sub http://www.gmayor.com/installing_macro.htm -- Graham Mayor - Word MVP My web site www.gmayor.com Word MVP web site http://word.mvps.org "bay" wrote in message ... how do i select various paragraphs on the same page to be printed i can only highlight one paragraph at a time many thanks |
Reply |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to search for (and select) paragraphs with certain formatparameters | Microsoft Word Help | |||
Select all paragraphs of a style, but only within selection | Microsoft Word Help | |||
Word 2000: Select a paragraphs of certain style | Microsoft Word Help | |||
Using CTRL key to select different paragraphs | Microsoft Word Help | |||
Does Ctrl button allow to select multiple paragraphs within a docu | Microsoft Word Help |