
Signature
Thanks for any help anyone can provide,
Conan Kelly
Hi Conan,
It can be if it's manual. This routine replaces all of the manual page
breaks with a paragraph.
With Selection
.HomeKey unit:=wdStory
With .Find
.ClearFormatting
.Text = "^m"
With .replacement
.ClearFormatting
.Text = "^p"
End With
.Execute Replace:=wdReplaceAll
End With
End With
HTH,
Dave
> Hello all,
>
> Is a page break a character that can be searched for and replaced using
> Find & Replace? What is it's Unicode/ASCII character codes?
>
> With code, I'm going to need to search for it & replace it.
Conan Kelly - 13 Nov 2006 19:51 GMT
Dave Lett,
Thank you for the help.
That looks like it might do exactly what I need it to do.
Thanks again for all of your help,
Conan
> Hi Conan,
>
[quoted text clipped - 22 lines]
>>
>> With code, I'm going to need to search for it & replace it.