Z
zSplash
What's the deal with this code? It errs when X = 6, although there are 9
FF's in the document.
Sub deleteFFs()
Dim X As Integer, tTotal As Integer
tTotal = ActiveDocument.FormFields.Count
For X = 1 To tTotal
ActiveDocument.FormFields(X).Delete
Next
End Sub
I tried writing something using "For each FF in ActiveDocument", but I don't
know how to loop without using names or indices. It must be tooooo
simple....
TIA
FF's in the document.
Sub deleteFFs()
Dim X As Integer, tTotal As Integer
tTotal = ActiveDocument.FormFields.Count
For X = 1 To tTotal
ActiveDocument.FormFields(X).Delete
Next
End Sub
I tried writing something using "For each FF in ActiveDocument", but I don't
know how to loop without using names or indices. It must be tooooo
simple....
TIA