View Single Post
  #15   Report Post  
Posted to microsoft.public.word.docmanagement
Jay Freedman Jay Freedman is offline
external usenet poster
 
Posts: 9,854
Default Selecting sentence/paragraph with keyboard

On Thu, 22 Feb 2007 19:42:17 -0800, Don Ellis
wrote:

After Lene got me thinking about Macros (and I figured out how to display the
Developer's Ribbon in Word 2007), I simply recorded a macro for [space][en
dash][space] and assigned it to Ctrl-/.

Happy now... (or I would be if I could create a SelectCurrentParagraph macro
in addition to my SelectCurrentSentence).

Thanks to all of you for your help.

Don


You can have such a macro, like this:

Sub SelectCurrentParagraph()
Selection.Paragraphs(1).Range.Select
End Sub

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.