Thanks for the help. I'm finally getting places with my program, can open a .docx and step through it to get the text i need, but now I've run into an issue with pictures. Here's what I have.
User is given a task to insert an image on page 3 (paragrah 10) after the frist sentence and make it 3inchs by 3inchs.
Once this is done the program then needs to check if the correct image was placed in the correct location in the document and that it is the correct size, and that is where I'm stuck.
For jobs like that with text i am using InnerText, I tryed InnerXML but was unable to return anything other then the XML for the entire paragrah, and when i did XmlDocument.SelectNodes("//w:body/w:p[10]/w:pict") (to only select the XML in the pict namespace) it returned nothing.
Can anyone point me in the right direction that i should be going to look for a picture in the document in a certain location with a certain name?