R
Robin Clay
Also posted in "General Questions"
Greetings !
I have this, generated by recording a Macro :
Selection.Find.Replacement.Font.Name = "MS LineDraw"
With Selection.Find
.Text = "³"
.Replacement.Text = "³"
.Forward = True
.Wrap = wdFindAsk
.Format = True
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute Replace:=wdReplaceAll
but now that MS LineDraw won't work, I thought I could
substitute this, wot I got also by recording a Macro:
Selection.InsertSymbol _
Font:="Courier New", _
CharacterNumber:=9508, _
Unicode:=True
but I can't seem to marry this snatch with the previous
code, to do the lot.
Help !
RClay AT haswell DOT com
Greetings !
I have this, generated by recording a Macro :
Selection.Find.Replacement.Font.Name = "MS LineDraw"
With Selection.Find
.Text = "³"
.Replacement.Text = "³"
.Forward = True
.Wrap = wdFindAsk
.Format = True
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute Replace:=wdReplaceAll
but now that MS LineDraw won't work, I thought I could
substitute this, wot I got also by recording a Macro:
Selection.InsertSymbol _
Font:="Courier New", _
CharacterNumber:=9508, _
Unicode:=True
but I can't seem to marry this snatch with the previous
code, to do the lot.
Help !
RClay AT haswell DOT com