Thanks.
Try here:
http://sourceforge.net/project/showfiles.php?group_id=34153&release_id=105
--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://www.mvps.org/word
As far as I know, the "Times New Roman" that came with Office2000 already
had U+2264 (less than or equal).
Arial Unicode MS always had it (plus U+2266 = less than over equal).
You'll find it in the subset "Mathematical Operators".
What's new in Word2002 is the shortcut Alt+X to turn the code 2264 into the
character (and vice versa).
In Word2000, you can copy the macro below into your normal.dot, and assign
the shortcut Alt+X to it.
Regards,
Klaus
Sub ToggleUnicode2000()
Dim sLike As String
sLike = "[0-9a-fA-F][0-9a-fA-F][0-9a-fA-F][0-9a-fA-F]"
Dim sHexNumber As String
Dim rngHexNumber As Range
Selection.Collapse (wdCollapseEnd)
Set rngHexNumber = Selection.Range
rngHexNumber.Start = rngHexNumber.Start - 4
If rngHexNumber.Text Like sLike Then
rngHexNumber.Text = ChrW("&H" & rngHexNumber.Text)
rngHexNumber.Select
Else
rngHexNumber.Start = rngHexNumber.End - 1
sHexNumber = AscW(rngHexNumber.Text)
sHexNumber = Hex(sHexNumber And &HFFFF&)
While Len(sHexNumber) < 4
sHexNumber = "0" & sHexNumber
Wend
rngHexNumber.Text = sHexNumber
rngHexNumber.Select
End If
End Sub
Tom
MSMVP PS-D
"pelirojaroja" <lmf...@yahoo.com> wrote in message
news:031c01c36c1b$edfd1990$a601...@phx.gbl...