![]() |
#1
|
|||
|
|||
![]()
Hello All,
Using VBA, how do I instruct the cursor to go one space/character to the right of activedocument.comment(x)? |
#2
|
|||
|
|||
![]()
The comment reference, ballon, or rangestory?
Sub ScratchMacro() 'A basic Word macro coded by Greg Maxey Dim oRng As Word.Range On Error GoTo lbl_Exit Set oRng = ActiveDocument.Comments(1).Reference oRng.Collapse wdCollapseEnd oRng.Move wdCharacter, 1 oRng.Select lbl_Exit: Exit Sub End Sub |
![]() |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
![]() |
Bengt | Word | 3 | 05-13-2015 01:53 PM |
How do I move the cursor back to the text from a comment without using the mouse? | MsT | Word | 2 | 04-24-2014 05:48 PM |
from one comment to next comment | gsrikanth | Excel Programming | 0 | 06-15-2012 10:52 PM |
![]() |
pstein | Word | 2 | 03-31-2012 05:31 AM |
comment format | jibby | Word | 5 | 02-07-2010 06:59 PM |