S
StargateFan
I always feel that this type of code isn't the most efficient where a
change has to be done through a selection. Here is part of a recorded
macro where the font gets changed to Courier New, 10pt:
Selection.WholeStory
With Selection.Font
.Name = "Courier New"
.Size = 10
End With
Selection.HomeKey Unit:=wdStory
Is there a way to do it cleanly through a "change document's font"
type of code, without a selection? This time I was more patient and
searched and searched first before posting here <g>. But the archives
and the vbe help haven't yielded anything I can use. I'm probably
asking for something not precise enough, again. Anyway, TIA.
change has to be done through a selection. Here is part of a recorded
macro where the font gets changed to Courier New, 10pt:
Selection.WholeStory
With Selection.Font
.Name = "Courier New"
.Size = 10
End With
Selection.HomeKey Unit:=wdStory
Is there a way to do it cleanly through a "change document's font"
type of code, without a selection? This time I was more patient and
searched and searched first before posting here <g>. But the archives
and the vbe help haven't yielded anything I can use. I'm probably
asking for something not precise enough, again. Anyway, TIA.