I need to find a text box within a word document that begins with a certain word. Once I find the text box with that word in it, I need to search only that text box for some other information.
Example:
#########some text box ########################
# “First word in the box” #
# #
# other stuff that doesn’t matter #
# #
###############################################
I believe, in order to do this, I have to somehow get the Name of the text box and then search its contents.
#the reason I need to search only that box is #for efficiency’s sake, as I will be doing this #with many documents at once.