Hi Robert;,
Use this to test for the name of the currently selected formfield:
'_______________________________________
If Selection.Bookmarks(1).Name = "TextA" Then
MsgBox "That's the right one chaps!"
Else
MsgBox "Sorry, wrong one!"
End If
'_______________________________________

Signature
--
Salut!
_______________________________________
Jean-Guy Marcil - Word MVP
jmarcilREMOVE@CAPSsympatico.caTHISTOO
Word MVP site: http://www.word.mvps.org
> I have an exit macro that runs on exiting multiple textbox
> formfields. If this is "TextA" then I want to do something
[quoted text clipped - 4 lines]
> But I can't get it to work. Is the formfield textbox still
> selected when the exit macro runs? Thanks.