That worked perfectly. Thanks so much.
--
Debra Ann
"Helmut Weber" wrote:
> 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
>