How to write VBA sentenses to change the type of Selected Charaters? ( e.g.
make the selected words bigger, blacker)
The difficult point is how to express the " selected charaters" in VBA ?!
Thanks!
Helmut Weber - 18 Apr 2005 10:17 GMT
Hi Martin,
if you talking about different parts of text selected by
using ctrl-shift, then there seems to be no way to process
all that is selected. At least it was that way, when I read
last about it.
There are workarounds, though,
using highlighting instead,
but not at a beginner's level, I'd say.
If the selection is only one piece of text, then
I'd suggest, you use the macro recorder to get you going.
Greetings from Bavaria, Germany
Helmut Weber, MVP
"red.sys" & chr(64) & "t-online.de"
Word 2002, Windows 2000
Word Heretic - 19 Apr 2005 01:17 GMT
G'day "Martin" <lajitong888@21cn.com>,
Selection.Range.Font.Bold = True
Steve Hudson - Word Heretic
steve from wordheretic.com (Email replies require payment)
Without prejudice
Martin reckoned:
>How to write VBA sentenses to change the type of Selected Charaters? ( e.g.
>make the selected words bigger, blacker)
>
>The difficult point is how to express the " selected charaters" in VBA ?!
>
>Thanks!