Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Word / Programming / January 2008

Tip: Looking for answers? Try searching our database.

Deleting empty formfields

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Mark - 09 Jan 2008 22:43 GMT
I am using Word 2003, can someone assist me with some code which looks
through a document and deletes all the formfields that are not populated.

Thanks in advance

Signature

Mark

Jean-Guy Marcil - 10 Jan 2008 01:22 GMT
Mark was telling us:
Mark nous racontait que :

> I am using Word 2003, can someone assist me with some code which looks
> through a document and deletes all the formfields that are not
> populated.
>
> Thanks in advance

Here is a little something to get you going. The following assumes that the
first choice in a formfield dropdown is the default one, such as "Choose" or
"Select" or "Pick something!"
As for text input fields, they will be deleted if their content is equal to
the default values, which might be nothing or any text used when designing
the form, such as "Write your name here."

'_______________________________________
Option Explicit
'_______________________________________
Sub DelEmptyFF()

Dim myFFs As FormFields
Dim i As Long

Set myFFs = ActiveDocument.FormFields

ActiveDocument.Unprotect

For i = myFFs.Count To 1 Step -1
   Select Case myFFs(i).Type
       Case wdFieldFormTextInput
           If myFFs(i).Result = myFFs(i).TextInput.Default Then _
               myFFs(i).Range.Delete
       Case wdFieldFormCheckBox
           If myFFs(i).CheckBox.Value = False Then _
               myFFs(i).Range.Delete
       Case wdFieldFormDropDown
           If myFFs(i).DropDown.Value = 1 Then _
               myFFs(i).Range.Delete
   End Select
Next

ActiveDocument.Protect wdAllowOnlyFormFields, True

End Sub
'_______________________________________

Signature

Salut!
_______________________________________
Jean-Guy Marcil - Word MVP
jmarcilREMOVE@CAPSsympatico.caTHISTOO
Word MVP site: http://www.word.mvps.org

 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.