This revision is from 06-25-04. All changes primarily to the NewMacros code.
This commit is contained in:
parent
d7605e3538
commit
6b999b177b
3 changed files with 4 additions and 4 deletions
|
@ -5,7 +5,7 @@ Begin {C62A69F0-16DC-11CE-9E98-00AA00574A4F} ItalicOptions
|
|||
ClientLeft = 30
|
||||
ClientTop = 480
|
||||
ClientWidth = 7125
|
||||
OleObjectBlob = "ItalicOptions062304.frx":0000
|
||||
OleObjectBlob = "ItalicOptions062504.frx":0000
|
||||
StartUpPosition = 1 'CenterOwner
|
||||
End
|
||||
Attribute VB_Name = "ItalicOptions"
|
||||
|
|
Binary file not shown.
|
@ -445,8 +445,8 @@ Function iterateRange(ByVal rng)
|
|||
|
||||
ElseIf char1.Style = "Hyperlink,hl" Then
|
||||
textToDis = char1.Hyperlinks(1).TextToDisplay
|
||||
leftPt = InStr(outStr, " HYPERLINK") - 1
|
||||
outStr = Left(outStr, leftPt)
|
||||
leftPt = InStr(outStr, "HYPERLINK") - 1
|
||||
If leftPt > 0 Then outStr = Left(outStr, leftPt)
|
||||
outStr = outStr & "<xref n=""" & char1.Hyperlinks(1).Address & """>" _
|
||||
& textToDis & "</xref>"
|
||||
n = n + Len(textToDis)
|
||||
|
@ -471,7 +471,7 @@ Function iterateRange(ByVal rng)
|
|||
End If
|
||||
Next n
|
||||
If InStr(outStr, "HYPERLINK") Then
|
||||
sInd = InStr(outStr, " HYPERLINK")
|
||||
sInd = InStr(outStr, "HYPERLINK")
|
||||
hind = InStr(outStr, "http")
|
||||
eInd = InStr(hind, outStr, """")
|
||||
linkURL = Mid(outStr, hind, eInd - hind)
|
||||
|
|
Loading…
Reference in a new issue