G
Greg Maxey
In the following code why does the line MsgBox aWord.Next return just the
first letter of the next word rather than the complete word? Thanks
Sub Testing()
Dim aWord
For Each aWord In ActiveDocument.Range.Words
MsgBox aWord
MsgBox aWord.Next
Next aWord
End Sub
first letter of the next word rather than the complete word? Thanks
Sub Testing()
Dim aWord
For Each aWord In ActiveDocument.Range.Words
MsgBox aWord
MsgBox aWord.Next
Next aWord
End Sub