Hi Debra,
for pausing a macro and allowing the user
to do something with the document,
you would need a modeless userform,
which is kind of advanced programming.
For just pausing you could use a msgbox, like:
Sub Makro2x()
Dim oFld As FormField
Dim x As Long
For Each oFld In ActiveDocument.FormFields
If oFld.Type = wdFieldFormCheckBox Then
If oFld.Result = False Then
oFld.Select
x = MsgBox("Continue?", vbOKCancel)
If x = 2 Then Exit Sub
End If
End If
Next
End Sub
--
Greetings from Bavaria, Germany
Helmut Weber, MVP WordVBA
Vista Small Business, Office XP
Debra Ann - 11 Mar 2008 17:41 GMT
That worked perfectly. Thanks so much.

Signature
Debra Ann
> Hi Debra,
>
[quoted text clipped - 26 lines]
>
> Vista Small Business, Office XP