Reply
 
Thread Tools Display Modes
  #1   Report Post  
JJPARKER_ONLINE
 
Posts: n/a
Default Can "Comment" be added to mouse right-click menu in WORD?

When editing a document in WORD, rather than going to the INSERT menu to
place a COMMENT in same, it would be convenient to be able to right-click on
the mouse and have COMMENT be one of the options. Can COMMENT be added to the
right-click pull-down menu within a given document? I currently use WORD
2003.
  #2   Report Post  
Tony Jollans
 
Posts: n/a
Default

Yes! It's a littlr more involved than your average customization, but yes.

Select Tools Customize from the Menu

On the Toolbar tab, scroll down and check "Shortcut Menus" - this will add a
small toolbar to your window.

Switch to the Commands tab and select "Insert" from the categories list on
the right, then scroll down th elist on the right to find Comment

Click and drag "Comment" and hover over "Text" on the Shortcut Menu Bar you
added - a long popup will open

Still dragging go and hover over Text in the popup menu and the normal right
click menu will popup

Keep dragging and drop "Comment" where you want it in thi smenu.

Close the Customize dialog

--
Enjoy,
Tony


"JJPARKER_ONLINE" wrote in
message ...
When editing a document in WORD, rather than going to the INSERT menu to
place a COMMENT in same, it would be convenient to be able to right-click

on
the mouse and have COMMENT be one of the options. Can COMMENT be added to

the
right-click pull-down menu within a given document? I currently use WORD
2003.



  #3   Report Post  
Posted to microsoft.public.word.docmanagement
Ade Ade is offline
external usenet poster
 
Posts: 2
Default Can "Comment" be added to mouse right-click menu in WORD?

Any idea how this can be done for Word 2007?




"Tony Jollans" wrote:

Yes! It's a littlr more involved than your average customization, but yes.

Select Tools Customize from the Menu

On the Toolbar tab, scroll down and check "Shortcut Menus" - this will add a
small toolbar to your window.

Switch to the Commands tab and select "Insert" from the categories list on
the right, then scroll down th elist on the right to find Comment

Click and drag "Comment" and hover over "Text" on the Shortcut Menu Bar you
added - a long popup will open

Still dragging go and hover over Text in the popup menu and the normal right
click menu will popup

Keep dragging and drop "Comment" where you want it in thi smenu.

Close the Customize dialog

--
Enjoy,
Tony


"JJPARKER_ONLINE" wrote in
message ...
When editing a document in WORD, rather than going to the INSERT menu to
place a COMMENT in same, it would be convenient to be able to right-click

on
the mouse and have COMMENT be one of the options. Can COMMENT be added to

the
right-click pull-down menu within a given document? I currently use WORD
2003.




  #4   Report Post  
Posted to microsoft.public.word.docmanagement
Tony Jollans Tony Jollans is offline
external usenet poster
 
Posts: 1,308
Default Can "Comment" be added to mouse right-click menu in WORD?

The customization interface has been removed but it can still be done via
VBA.

Press Alt+F11 to open the VBE
Press Ctrl+G to go to the Immediate Window
Type (or cut and paste) this:
CommandBars("Text").Controls.Add Type:=msoControlButton, ID:=1589,
Befo=6

(the befo=6 is the position to put it in)
Press Enter
Press Alt+F11 to close the VBE

--
Enjoy,
Tony

"Ade" wrote in message
...
Any idea how this can be done for Word 2007?




"Tony Jollans" wrote:

Yes! It's a littlr more involved than your average customization, but
yes.

Select Tools Customize from the Menu

On the Toolbar tab, scroll down and check "Shortcut Menus" - this will
add a
small toolbar to your window.

Switch to the Commands tab and select "Insert" from the categories list
on
the right, then scroll down th elist on the right to find Comment

Click and drag "Comment" and hover over "Text" on the Shortcut Menu Bar
you
added - a long popup will open

Still dragging go and hover over Text in the popup menu and the normal
right
click menu will popup

Keep dragging and drop "Comment" where you want it in thi smenu.

Close the Customize dialog

--
Enjoy,
Tony


"JJPARKER_ONLINE" wrote in
message ...
When editing a document in WORD, rather than going to the INSERT menu
to
place a COMMENT in same, it would be convenient to be able to
right-click

on
the mouse and have COMMENT be one of the options. Can COMMENT be added
to

the
right-click pull-down menu within a given document? I currently use
WORD
2003.





  #5   Report Post  
Posted to microsoft.public.word.docmanagement
Ade Ade is offline
external usenet poster
 
Posts: 2
Default Can "Comment" be added to mouse right-click menu in WORD?

Thanks Tony,
That works a treat, is there a list of the button ID's somewhere?



"Tony Jollans" wrote:

The customization interface has been removed but it can still be done via
VBA.

Press Alt+F11 to open the VBE
Press Ctrl+G to go to the Immediate Window
Type (or cut and paste) this:
CommandBars("Text").Controls.Add Type:=msoControlButton, ID:=1589,
Befo=6

(the befo=6 is the position to put it in)
Press Enter
Press Alt+F11 to close the VBE

--
Enjoy,
Tony

"Ade" wrote in message
...
Any idea how this can be done for Word 2007?




"Tony Jollans" wrote:

Yes! It's a littlr more involved than your average customization, but
yes.

Select Tools Customize from the Menu

On the Toolbar tab, scroll down and check "Shortcut Menus" - this will
add a
small toolbar to your window.

Switch to the Commands tab and select "Insert" from the categories list
on
the right, then scroll down th elist on the right to find Comment

Click and drag "Comment" and hover over "Text" on the Shortcut Menu Bar
you
added - a long popup will open

Still dragging go and hover over Text in the popup menu and the normal
right
click menu will popup

Keep dragging and drop "Comment" where you want it in thi smenu.

Close the Customize dialog

--
Enjoy,
Tony


"JJPARKER_ONLINE" wrote in
message ...
When editing a document in WORD, rather than going to the INSERT menu
to
place a COMMENT in same, it would be convenient to be able to
right-click
on
the mouse and have COMMENT be one of the options. Can COMMENT be added
to
the
right-click pull-down menu within a given document? I currently use
WORD
2003.







  #6   Report Post  
Posted to microsoft.public.word.docmanagement
Tony Jollans Tony Jollans is offline
external usenet poster
 
Posts: 1,308
Default Can "Comment" be added to mouse right-click menu in WORD?

I don't know of a list but you can build your own with something like ..

On Error Resume next
For i = 1 To 1000 ' or whatever
Selection.TypeText i & vbTab &
CommandBars.FindControl(ID:=i).Caption
Selection.TypeParagraph
Next i

This should work but you will probably want to tidy it up and add better
error handling.

--
Enjoy,
Tony

"Ade" wrote in message
...
Thanks Tony,
That works a treat, is there a list of the button ID's somewhere?



"Tony Jollans" wrote:

The customization interface has been removed but it can still be done via
VBA.

Press Alt+F11 to open the VBE
Press Ctrl+G to go to the Immediate Window
Type (or cut and paste) this:
CommandBars("Text").Controls.Add Type:=msoControlButton, ID:=1589,
Befo=6

(the befo=6 is the position to put it in)
Press Enter
Press Alt+F11 to close the VBE

--
Enjoy,
Tony

"Ade" wrote in message
...
Any idea how this can be done for Word 2007?




"Tony Jollans" wrote:

Yes! It's a littlr more involved than your average customization, but
yes.

Select Tools Customize from the Menu

On the Toolbar tab, scroll down and check "Shortcut Menus" - this will
add a
small toolbar to your window.

Switch to the Commands tab and select "Insert" from the categories
list
on
the right, then scroll down th elist on the right to find Comment

Click and drag "Comment" and hover over "Text" on the Shortcut Menu
Bar
you
added - a long popup will open

Still dragging go and hover over Text in the popup menu and the normal
right
click menu will popup

Keep dragging and drop "Comment" where you want it in thi smenu.

Close the Customize dialog

--
Enjoy,
Tony


"JJPARKER_ONLINE" wrote in
message ...
When editing a document in WORD, rather than going to the INSERT
menu
to
place a COMMENT in same, it would be convenient to be able to
right-click
on
the mouse and have COMMENT be one of the options. Can COMMENT be
added
to
the
right-click pull-down menu within a given document? I currently use
WORD
2003.






  #7   Report Post  
Posted to microsoft.public.word.docmanagement
Elliott Elliott is offline
external usenet poster
 
Posts: 7
Default Can "Comment" be added to mouse right-click menu in WORD?

Is there a way to add "paste special" to the right-click menu as well as
comment?
The comment works great! Thanks Tony


"Tony Jollans" wrote:

I don't know of a list but you can build your own with something like ..

On Error Resume next
For i = 1 To 1000 ' or whatever
Selection.TypeText i & vbTab &
CommandBars.FindControl(ID:=i).Caption
Selection.TypeParagraph
Next i

This should work but you will probably want to tidy it up and add better
error handling.

--
Enjoy,
Tony

"Ade" wrote in message
...
Thanks Tony,
That works a treat, is there a list of the button ID's somewhere?



"Tony Jollans" wrote:

The customization interface has been removed but it can still be done via
VBA.

Press Alt+F11 to open the VBE
Press Ctrl+G to go to the Immediate Window
Type (or cut and paste) this:
CommandBars("Text").Controls.Add Type:=msoControlButton, ID:=1589,
Befo=6

(the befo=6 is the position to put it in)
Press Enter
Press Alt+F11 to close the VBE

--
Enjoy,
Tony

"Ade" wrote in message
...
Any idea how this can be done for Word 2007?




"Tony Jollans" wrote:

Yes! It's a littlr more involved than your average customization, but
yes.

Select Tools Customize from the Menu

On the Toolbar tab, scroll down and check "Shortcut Menus" - this will
add a
small toolbar to your window.

Switch to the Commands tab and select "Insert" from the categories
list
on
the right, then scroll down th elist on the right to find Comment

Click and drag "Comment" and hover over "Text" on the Shortcut Menu
Bar
you
added - a long popup will open

Still dragging go and hover over Text in the popup menu and the normal
right
click menu will popup

Keep dragging and drop "Comment" where you want it in thi smenu.

Close the Customize dialog

--
Enjoy,
Tony


"JJPARKER_ONLINE" wrote in
message ...
When editing a document in WORD, rather than going to the INSERT
menu
to
place a COMMENT in same, it would be convenient to be able to
right-click
on
the mouse and have COMMENT be one of the options. Can COMMENT be
added
to
the
right-click pull-down menu within a given document? I currently use
WORD
2003.







  #8   Report Post  
Posted to microsoft.public.word.docmanagement
Elliott Elliott is offline
external usenet poster
 
Posts: 7
Default Can "Comment" be added to mouse right-click menu in WORD?

I forgot to mention for Word 2007 as well.

"Tony Jollans" wrote:

I don't know of a list but you can build your own with something like ..

On Error Resume next
For i = 1 To 1000 ' or whatever
Selection.TypeText i & vbTab &
CommandBars.FindControl(ID:=i).Caption
Selection.TypeParagraph
Next i

This should work but you will probably want to tidy it up and add better
error handling.

--
Enjoy,
Tony

"Ade" wrote in message
...
Thanks Tony,
That works a treat, is there a list of the button ID's somewhere?



"Tony Jollans" wrote:

The customization interface has been removed but it can still be done via
VBA.

Press Alt+F11 to open the VBE
Press Ctrl+G to go to the Immediate Window
Type (or cut and paste) this:
CommandBars("Text").Controls.Add Type:=msoControlButton, ID:=1589,
Befo=6

(the befo=6 is the position to put it in)
Press Enter
Press Alt+F11 to close the VBE

--
Enjoy,
Tony

"Ade" wrote in message
...
Any idea how this can be done for Word 2007?




"Tony Jollans" wrote:

Yes! It's a littlr more involved than your average customization, but
yes.

Select Tools Customize from the Menu

On the Toolbar tab, scroll down and check "Shortcut Menus" - this will
add a
small toolbar to your window.

Switch to the Commands tab and select "Insert" from the categories
list
on
the right, then scroll down th elist on the right to find Comment

Click and drag "Comment" and hover over "Text" on the Shortcut Menu
Bar
you
added - a long popup will open

Still dragging go and hover over Text in the popup menu and the normal
right
click menu will popup

Keep dragging and drop "Comment" where you want it in thi smenu.

Close the Customize dialog

--
Enjoy,
Tony


"JJPARKER_ONLINE" wrote in
message ...
When editing a document in WORD, rather than going to the INSERT
menu
to
place a COMMENT in same, it would be convenient to be able to
right-click
on
the mouse and have COMMENT be one of the options. Can COMMENT be
added
to
the
right-click pull-down menu within a given document? I currently use
WORD
2003.







  #9   Report Post  
Posted to microsoft.public.word.docmanagement
Tony Jollans Tony Jollans is offline
external usenet poster
 
Posts: 1,308
Default Can "Comment" be added to mouse right-click menu in WORD?

If you had run the code in the post to which you replied you could have
found out that the ID to use is 755

--
Enjoy,
Tony

"Elliott" wrote in message
...
I forgot to mention for Word 2007 as well.

"Tony Jollans" wrote:

I don't know of a list but you can build your own with something like ..

On Error Resume next
For i = 1 To 1000 ' or whatever
Selection.TypeText i & vbTab &
CommandBars.FindControl(ID:=i).Caption
Selection.TypeParagraph
Next i

This should work but you will probably want to tidy it up and add better
error handling.

--
Enjoy,
Tony

"Ade" wrote in message
...
Thanks Tony,
That works a treat, is there a list of the button ID's somewhere?



"Tony Jollans" wrote:

The customization interface has been removed but it can still be done
via
VBA.

Press Alt+F11 to open the VBE
Press Ctrl+G to go to the Immediate Window
Type (or cut and paste) this:
CommandBars("Text").Controls.Add Type:=msoControlButton, ID:=1589,
Befo=6

(the befo=6 is the position to put it in)
Press Enter
Press Alt+F11 to close the VBE

--
Enjoy,
Tony

"Ade" wrote in message
...
Any idea how this can be done for Word 2007?




"Tony Jollans" wrote:

Yes! It's a littlr more involved than your average customization,
but
yes.

Select Tools Customize from the Menu

On the Toolbar tab, scroll down and check "Shortcut Menus" - this
will
add a
small toolbar to your window.

Switch to the Commands tab and select "Insert" from the categories
list
on
the right, then scroll down th elist on the right to find Comment

Click and drag "Comment" and hover over "Text" on the Shortcut
Menu
Bar
you
added - a long popup will open

Still dragging go and hover over Text in the popup menu and the
normal
right
click menu will popup

Keep dragging and drop "Comment" where you want it in thi smenu.

Close the Customize dialog

--
Enjoy,
Tony


"JJPARKER_ONLINE" wrote
in
message ...
When editing a document in WORD, rather than going to the INSERT
menu
to
place a COMMENT in same, it would be convenient to be able to
right-click
on
the mouse and have COMMENT be one of the options. Can COMMENT be
added
to
the
right-click pull-down menu within a given document? I currently
use
WORD
2003.








  #10   Report Post  
Posted to microsoft.public.word.docmanagement
Elliott Elliott is offline
external usenet poster
 
Posts: 7
Default Can "Comment" be added to mouse right-click menu in WORD?

Thanks so much Tonny - you the man!

"Tony Jollans" wrote:

If you had run the code in the post to which you replied you could have
found out that the ID to use is 755

--
Enjoy,
Tony

"Elliott" wrote in message
...
I forgot to mention for Word 2007 as well.

"Tony Jollans" wrote:

I don't know of a list but you can build your own with something like ..

On Error Resume next
For i = 1 To 1000 ' or whatever
Selection.TypeText i & vbTab &
CommandBars.FindControl(ID:=i).Caption
Selection.TypeParagraph
Next i

This should work but you will probably want to tidy it up and add better
error handling.

--
Enjoy,
Tony

"Ade" wrote in message
...
Thanks Tony,
That works a treat, is there a list of the button ID's somewhere?



"Tony Jollans" wrote:

The customization interface has been removed but it can still be done
via
VBA.

Press Alt+F11 to open the VBE
Press Ctrl+G to go to the Immediate Window
Type (or cut and paste) this:
CommandBars("Text").Controls.Add Type:=msoControlButton, ID:=1589,
Befo=6

(the befo=6 is the position to put it in)
Press Enter
Press Alt+F11 to close the VBE

--
Enjoy,
Tony

"Ade" wrote in message
...
Any idea how this can be done for Word 2007?




"Tony Jollans" wrote:

Yes! It's a littlr more involved than your average customization,
but
yes.

Select Tools Customize from the Menu

On the Toolbar tab, scroll down and check "Shortcut Menus" - this
will
add a
small toolbar to your window.

Switch to the Commands tab and select "Insert" from the categories
list
on
the right, then scroll down th elist on the right to find Comment

Click and drag "Comment" and hover over "Text" on the Shortcut
Menu
Bar
you
added - a long popup will open

Still dragging go and hover over Text in the popup menu and the
normal
right
click menu will popup

Keep dragging and drop "Comment" where you want it in thi smenu.

Close the Customize dialog

--
Enjoy,
Tony


"JJPARKER_ONLINE" wrote
in
message ...
When editing a document in WORD, rather than going to the INSERT
menu
to
place a COMMENT in same, it would be convenient to be able to
right-click
on
the mouse and have COMMENT be one of the options. Can COMMENT be
added
to
the
right-click pull-down menu within a given document? I currently
use
WORD
2003.











  #11   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Can "Comment" be added to mouse right-click menu in WORD?

Fellow MVP Greg Maxey has a new page on his web site explaining the
programming of right click menus
http://gregmaxey.mvps.org/Customize_...amatically.htm

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org


Elliott wrote:
Thanks so much Tonny - you the man!

"Tony Jollans" wrote:

If you had run the code in the post to which you replied you could
have found out that the ID to use is 755

--
Enjoy,
Tony

"Elliott" wrote in message
...
I forgot to mention for Word 2007 as well.

"Tony Jollans" wrote:

I don't know of a list but you can build your own with something
like ..

On Error Resume next
For i = 1 To 1000 ' or whatever
Selection.TypeText i & vbTab &
CommandBars.FindControl(ID:=i).Caption
Selection.TypeParagraph
Next i

This should work but you will probably want to tidy it up and add
better error handling.

--
Enjoy,
Tony

"Ade" wrote in message
...
Thanks Tony,
That works a treat, is there a list of the button ID's somewhere?



"Tony Jollans" wrote:

The customization interface has been removed but it can still be
done via
VBA.

Press Alt+F11 to open the VBE
Press Ctrl+G to go to the Immediate Window
Type (or cut and paste) this:
CommandBars("Text").Controls.Add Type:=msoControlButton,
ID:=1589, Befo=6

(the befo=6 is the position to put it in)
Press Enter
Press Alt+F11 to close the VBE

--
Enjoy,
Tony

"Ade" wrote in message
...
Any idea how this can be done for Word 2007?




"Tony Jollans" wrote:

Yes! It's a littlr more involved than your average
customization, but
yes.

Select Tools Customize from the Menu

On the Toolbar tab, scroll down and check "Shortcut Menus" -
this will
add a
small toolbar to your window.

Switch to the Commands tab and select "Insert" from the
categories list
on
the right, then scroll down th elist on the right to find
Comment

Click and drag "Comment" and hover over "Text" on the Shortcut
Menu
Bar
you
added - a long popup will open

Still dragging go and hover over Text in the popup menu and the
normal
right
click menu will popup

Keep dragging and drop "Comment" where you want it in thi
smenu.

Close the Customize dialog

--
Enjoy,
Tony


"JJPARKER_ONLINE"
wrote in
message
...
When editing a document in WORD, rather than going to the
INSERT menu
to
place a COMMENT in same, it would be convenient to be able to
right-click
on
the mouse and have COMMENT be one of the options. Can COMMENT
be added
to
the
right-click pull-down menu within a given document? I
currently use
WORD
2003.



  #12   Report Post  
Posted to microsoft.public.word.docmanagement
Dom Dom is offline
external usenet poster
 
Posts: 8
Default Can "Comment" be added to mouse right-click menu in WORD?

I used this code to add "Underline" to the context menu:

CommandBars("Text").Controls.Add Type:=msoControlButton, ID:=115,
Befo=2

It worked a treat. Only problem: I ran it about 7 times before I realised
it was adding the control to my Normal template and not the document I had
opened.

Now I have 6 instances of the control that I'd like to get rid of. There
doesn't seem to be an equivalent "Delete" or "Remove" function, and don't
just want to hide them.

Any suggestions please.

ACR



"Tony Jollans" wrote:

If you had run the code in the post to which you replied you could have
found out that the ID to use is 755

--
Enjoy,
Tony

"Elliott" wrote in message
...
I forgot to mention for Word 2007 as well.

"Tony Jollans" wrote:

I don't know of a list but you can build your own with something like ..

On Error Resume next
For i = 1 To 1000 ' or whatever
Selection.TypeText i & vbTab &
CommandBars.FindControl(ID:=i).Caption
Selection.TypeParagraph
Next i

This should work but you will probably want to tidy it up and add better
error handling.

--
Enjoy,
Tony

"Ade" wrote in message
...
Thanks Tony,
That works a treat, is there a list of the button ID's somewhere?



"Tony Jollans" wrote:

The customization interface has been removed but it can still be done
via
VBA.

Press Alt+F11 to open the VBE
Press Ctrl+G to go to the Immediate Window
Type (or cut and paste) this:
CommandBars("Text").Controls.Add Type:=msoControlButton, ID:=1589,
Befo=6

(the befo=6 is the position to put it in)
Press Enter
Press Alt+F11 to close the VBE

--
Enjoy,
Tony

"Ade" wrote in message
...
Any idea how this can be done for Word 2007?




"Tony Jollans" wrote:

Yes! It's a littlr more involved than your average customization,
but
yes.

Select Tools Customize from the Menu

On the Toolbar tab, scroll down and check "Shortcut Menus" - this
will
add a
small toolbar to your window.

Switch to the Commands tab and select "Insert" from the categories
list
on
the right, then scroll down th elist on the right to find Comment

Click and drag "Comment" and hover over "Text" on the Shortcut
Menu
Bar
you
added - a long popup will open

Still dragging go and hover over Text in the popup menu and the
normal
right
click menu will popup

Keep dragging and drop "Comment" where you want it in thi smenu.

Close the Customize dialog

--
Enjoy,
Tony


"JJPARKER_ONLINE" wrote
in
message ...
When editing a document in WORD, rather than going to the INSERT
menu
to
place a COMMENT in same, it would be convenient to be able to
right-click
on
the mouse and have COMMENT be one of the options. Can COMMENT be
added
to
the
right-click pull-down menu within a given document? I currently
use
WORD
2003.









Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
When I click on a pull-down menu, I want to see the entire menu- . maduser Microsoft Word Help 8 October 7th 05 05:21 PM
I want to double click instead of a single click with mouse Arabian Lady Microsoft Word Help 1 August 29th 05 10:54 AM
MS Word: right mouse button doesn't bring up context menu barnettj68 Microsoft Word Help 0 July 29th 05 07:34 PM
Word: Option to invert selection in right click menu vmorale4 Microsoft Word Help 1 July 16th 05 09:51 PM
How do I get all my Word documents within one Word window RobJacobs Microsoft Word Help 5 April 12th 05 03:04 AM


All times are GMT +1. The time now is 03:56 AM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"