Word: Option to invert selection in right click menu

G

Guest

After selecting a portion of a document in word, and you right click on it,
you should have the option to invert selection.


This is useful for example when you want to change the format of the whole
document except for the selected part.

p.s. Yes , I know that i can hold the CTRL key to selectively "select" text

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.

http://www.microsoft.com/office/com...bf4433&dg=microsoft.public.word.docmanagement
 
G

Guest

It would be very easy to write a macro that does this... *if* Word VBA would
have support for multiple selections :-(

The macro below might do the trick (not sure if it works well on long docs,
or even if it works at all in all language versions.
It needed another ugly hack because there's also no VBA support for the new
Find dialog (with "Select all instances in: ...").

Selection.Font.Outline = True
Selection.Collapse (wdCollapseStart)
Selection.Find.ClearFormatting
Selection.Find.Font.Outline = False
SendKeys "{TAB}{+}{DOWN}{DOWN}{HOME}~~"
With Dialogs(wdDialogEditFind)
.Display 1
End With
ActiveDocument.Content.Font.Outline = False

Regards,
Klaus
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top