Quote:
Originally Posted by vince692
In order to understand .Hyperlinlk is an array of all selected Word hyperlinks ?
|
No, .Hyperlink is a Hyperlink object - .Hyperlinks is the Hyperlinks collection and .Hyperlinks(#), where # is a number, refers to a particular Hyperlink object from the Hyperlinks collection.
Quote:
Originally Posted by vince692
Is there a way to work with it or should i create a new variable as myarray() ?
|
Well, it's quite easy to loop through all the Hyperlink objects in the Hyperlinks collection, which is basically what your original code was doing, but you need to explain what the loop is supposed to achieve - do you just want to get a listing (which your original code does - then sends it to a message box), or do you want to process each hyperlink as it's found, or even do both?