![]() |
|
|
|
#1
|
|||
|
|||
|
Please, give me an example of code, which makes evey firs letter of new paragraph in low case.
|
|
#2
|
||||
|
||||
|
Try the following
Code:
Sub Macro1()
Dim oPara As Paragraph
For Each oPara In ActiveDocument.Paragraphs
oPara.Range.Characters(1).Case = wdLowerCase
Next oPara
End Sub
__________________
Graham Mayor - MS MVP (Word) (2002-2019) Visit my web site for more programming tips and ready made processes www.gmayor.com |
|
#3
|
|||
|
|||
|
Thanks, it works.
|
|
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| A persistent line of small square dots | johngross | Word | 4 | 02-23-2020 02:59 PM |
| Fixing letter spacing in small capital letters | alban1230 | PowerPoint | 0 | 11-05-2019 09:36 AM |
Use L and R arrow to move cursor letter to letter, not top of the line
|
mellowkitten | Word | 2 | 05-12-2016 07:23 PM |
Bigger font on first letter of first line leaves large gap on that line
|
CrossReach | Word | 1 | 04-12-2016 09:23 AM |
| Stop review query when small case at beginning of line | dsrose | Word | 2 | 01-22-2014 12:19 AM |