Convert a form with drop-down list to text without the box around

G

Guest

I need to convert a Form document to text while maintaining the formatting
but without the "strange" box that appears around every drop-down list. I
can remove the shading and can also convert the whole document to plain text
but lose the heading and sub-heading formatting. Is it possible to do?
 
G

Graham Mayor

There should only be a box around a *selected* form field?
The following macro will unlock the form and convert all the form fields to
text

ActiveDocument.Unprotect Password:=""
With Selection
.WholeStory
.Fields.Unlink
End With

Formatting in the document shouldn't be affected.

The problem arises when you convert to *plain text* as plain text is merely
that - text! It does not support formatting.

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top