|
* Demo-Text:
Eliminate Internal Negative Chatter
The first step is one of awareness. It will be hard to make a change to positive thinking without being acutely intimate with the thoughts that run through your mind. Recently, I was amazed to discover deep buried emotions from negative thoughts that I had for fewer than 10 minutes. Without awareness, I would have carried the hurt and anger inside. Awareness helped me to bring them out to the open for me to deal with.
- Sub delSpaceEnglish()
- With ActiveDocument
- With .Content.Find
- .Execute "[^13^l]", , , 1, , , , , , "^p", 2
- .Execute "[ ^s^t]{1,}", , , 1, , , , , , " ", 2
- End With
- .Select
- CommandBars.FindControl(ID:=122).Execute
- CommandBars.FindControl(ID:=123).Execute
- Dim i As Paragraph
- For Each i In .Paragraphs
- If Len(i.Range) = 1 Then i.Range.Delete
- Next
- End With
- Selection.HomeKey 6
- End Sub
复制代码 |
|