April 2006
Beginner
1114 pages
98h 16m
English
workbook.OpenLinks(Name, [ReadOnly], [Type])
Opens the source document from a link.
|
Argument |
Settings |
|---|---|
|
|
The name of the link. |
|
|
True opens the source document as read-only; False opens the document as read/write. |
|
|
The type of link to get information about. Possible settings are |
For example, the following code opens the sources of each of the Excel links in a workbook:
linkSources = ThisWorkbook.linkSources(xlLinkTypeExcelLinks)
If IsArray(linkSources) Then
For Each link In linkSources
ThisWorkbook.OpenLinks (link)
Next
End IfRead now
Unlock full access