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
|
ClientLeft = 30
|
||||||
ClientTop = 480
|
ClientTop = 480
|
||||||
ClientWidth = 7125
|
ClientWidth = 7125
|
||||||
OleObjectBlob = "ItalicOptions062304.frx":0000
|
OleObjectBlob = "ItalicOptions062504.frx":0000
|
||||||
StartUpPosition = 1 'CenterOwner
|
StartUpPosition = 1 'CenterOwner
|
||||||
End
|
End
|
||||||
Attribute VB_Name = "ItalicOptions"
|
Attribute VB_Name = "ItalicOptions"
|
||||||
|
|
Binary file not shown.
|
@ -445,8 +445,8 @@ Function iterateRange(ByVal rng)
|
||||||
|
|
||||||
ElseIf char1.Style = "Hyperlink,hl" Then
|
ElseIf char1.Style = "Hyperlink,hl" Then
|
||||||
textToDis = char1.Hyperlinks(1).TextToDisplay
|
textToDis = char1.Hyperlinks(1).TextToDisplay
|
||||||
leftPt = InStr(outStr, " HYPERLINK") - 1
|
leftPt = InStr(outStr, "HYPERLINK") - 1
|
||||||
outStr = Left(outStr, leftPt)
|
If leftPt > 0 Then outStr = Left(outStr, leftPt)
|
||||||
outStr = outStr & "<xref n=""" & char1.Hyperlinks(1).Address & """>" _
|
outStr = outStr & "<xref n=""" & char1.Hyperlinks(1).Address & """>" _
|
||||||
& textToDis & "</xref>"
|
& textToDis & "</xref>"
|
||||||
n = n + Len(textToDis)
|
n = n + Len(textToDis)
|
||||||
|
@ -471,7 +471,7 @@ Function iterateRange(ByVal rng)
|
||||||
End If
|
End If
|
||||||
Next n
|
Next n
|
||||||
If InStr(outStr, "HYPERLINK") Then
|
If InStr(outStr, "HYPERLINK") Then
|
||||||
sInd = InStr(outStr, " HYPERLINK")
|
sInd = InStr(outStr, "HYPERLINK")
|
||||||
hind = InStr(outStr, "http")
|
hind = InStr(outStr, "http")
|
||||||
eInd = InStr(hind, outStr, """")
|
eInd = InStr(hind, outStr, """")
|
||||||
linkURL = Mid(outStr, hind, eInd - hind)
|
linkURL = Mid(outStr, hind, eInd - hind)
|
||||||
|
|
Loading…
Reference in a new issue