O
OTWarrior via OfficeKB.com
I need to search many form fields in order to spellcheck them, and want the
spell check to pass over it if the formfield is empty, how would I do this?
I have tried this:
**************************
For Each FmFld In oSection.Range.FormFields
Set MyRange = FmFld.Range
If FmFld.Result = "" Then
Next FmFld
Else
'doloop
End If
Next fmfld
********************************
but to no avail. what would i use instead of next fmfld in this case? or are
you not able to go back to the manually force the loop to go over it's next
option?
spell check to pass over it if the formfield is empty, how would I do this?
I have tried this:
**************************
For Each FmFld In oSection.Range.FormFields
Set MyRange = FmFld.Range
If FmFld.Result = "" Then
Next FmFld
Else
'doloop
End If
Next fmfld
********************************
but to no avail. what would i use instead of next fmfld in this case? or are
you not able to go back to the manually force the loop to go over it's next
option?