A
Art H
This is not a vba question--not able to find a suitable group
One can create a hyperlink in one document to a specific location that
is not a bookmark in another document by selecting a word, right-
clicking, dragging, then selecting "Create Hyperlink Here" from the
context sensitive menu. The resulting field contains the switch \s
with several parameters. Here's an example:
\s "1,615,626,0,,Assessment "
What are these parameters all about? What's the definition of the \s
switch?
The last parameter (i.e., Assessment) is the selection from the source
document.
The second and third appear to be the range of the selection (i.e.,
"A" is the 615th character and the space following the t is the 626th
character). Or, in other words, the second parameter =
Selection.Range.Start and the third parameter is Selection.Range.End.
What's the 1, the 0, and the missing parameter?
Art
One can create a hyperlink in one document to a specific location that
is not a bookmark in another document by selecting a word, right-
clicking, dragging, then selecting "Create Hyperlink Here" from the
context sensitive menu. The resulting field contains the switch \s
with several parameters. Here's an example:
\s "1,615,626,0,,Assessment "
What are these parameters all about? What's the definition of the \s
switch?
The last parameter (i.e., Assessment) is the selection from the source
document.
The second and third appear to be the range of the selection (i.e.,
"A" is the 615th character and the space following the t is the 626th
character). Or, in other words, the second parameter =
Selection.Range.Start and the third parameter is Selection.Range.End.
What's the 1, the 0, and the missing parameter?
Art