danial
Board Regular
- Joined
- Apr 29, 2006
- Messages
- 107
Sawasdee,
I create code in MsWord for fill font color to any strings is equal english font
but it's slowly, very slow
anyone who have any way for me reduce time
Tnx in adv.
I create code in MsWord for fill font color to any strings is equal english font
Code:
Sub BlueEng()
St = Time
Selection.WholeStory
Dim TxNo As Integer
For K = 1 To Selection.Characters.Count
TxNo = Asc(Selection.Characters(K))
If TxNo > 64 And TxNo < 123 Then
Selection.Characters(K).Font.Color = wdColorBlue
End If
Next
MsgBox St & " - " & Time
End Sub
but it's slowly, very slow
anyone who have any way for me reduce time
Tnx in adv.