Group: microsoft.public.word.vba.general
From: =?Utf-8?B?QmVuamFtaW5vNQ==?=
Date: Friday, April 04, 2008 12:38 PM
Subject: RE: How do I convert automatic simple list numbering to actual tex

Jean-Guy,

Thanks!

Ben

"Jean-Guy Marcil" wrote:

> "Benjamino5" wrote:
>
> > I have a batch of RTF files in which the author used automatic numbering
> > (simple list style, not SEQ fields).
> >
> > I need to import these RTF files into a program that will choke on the
> > automatic numbering, so I need to convert it to plain characters.
> >
> > How can I do this? If these were fields, I could just unlink them. But I
> > don't know how to handle this kind of numbering.
> >
>
> Run this macro:
>
>
> Sub test()
>
> ActiveDocument.ConvertNumbersToText
>
> End Sub