J
JenFruels
Hi,
I am trying to find a raised character in Word. I have the following code:
Dim MWord As Word.Application
With MWord.Selection.Find
.Text = ""
.Font.Position = 5
End With
This code works fine but if the value I used for ".Font.Position" is a
decimal like below:
..Font.Position = 0.5
, it cannot find what I am looking for.Was this a bug or was I missing
something? If I manually searched for the raised character using the Find and
Repalce dialog box, it can actually find the character whether it is a
decimal or a non-decimal. The info in the dialog box has: "Format: Raised by
0.5 pt." but when done programmatically, it wasn't found. Please enlighten
me. Thanks.
I am trying to find a raised character in Word. I have the following code:
Dim MWord As Word.Application
With MWord.Selection.Find
.Text = ""
.Font.Position = 5
End With
This code works fine but if the value I used for ".Font.Position" is a
decimal like below:
..Font.Position = 0.5
, it cannot find what I am looking for.Was this a bug or was I missing
something? If I manually searched for the raised character using the Find and
Repalce dialog box, it can actually find the character whether it is a
decimal or a non-decimal. The info in the dialog box has: "Format: Raised by
0.5 pt." but when done programmatically, it wasn't found. Please enlighten
me. Thanks.