I run the ribbon minimized and use the Right-click on selected text to
format. The Underline function doesn't appear on that selection - is there a
way to add it?

RE: Adding item to right-click menu Word 2007 by Jacinthe

Jacinthe
Wed Jul 16 11:42:00 PDT 2008

I think a keyboard shortcut would be a lot more efficient. Use Ctrl-U to
turn the underlining on and off.

(Yes, I'm one of those. I only use the mouse if I absolutely have to.)

"Gordon" wrote:

> I run the ribbon minimized and use the Right-click on selected text to
> format. The Underline function doesn't appear on that selection - is there a
> way to add it?
>
>

Re: Adding item to right-click menu Word 2007 by Herb

Herb
Thu Jul 17 14:16:50 PDT 2008

There are a number of different right-click menus that can appear in Word,
depending on the context. The following macro should add Underline to the
most common right-click menu in Word 2007:

Sub AddUnderlineToMenu()
'
' AddUnderlineToMenu Macro
' Macro recorded 7/17/2008 by
'
CommandBars("Formatting").Controls(8).Move Bar:=CommandBars("Text"), _
Before:=6
End Sub

I recorded this macro in Word 2003, then ran it in Word 2007... and it did
indeed add Underline to the right-click menu, just before Font.

But, like Jacinthe suggests, pressing Ctrl+U might be a more ergonomic
solution.


--
Herb Tyson MS MVP
Author of the Word 2007 Bible
Blog: http://word2007bible.herbtyson.com
Web: http://www.herbtyson.com


"Gordon" <gordonbparker@yahoo.com.invalid> wrote in message
news:eWJV90y5IHA.4848@TK2MSFTNGP05.phx.gbl...
>I run the ribbon minimized and use the Right-click on selected text to
>format. The Underline function doesn't appear on that selection - is there
>a way to add it?