I got a word 2007 document with Content controls binded to XML Mapping
<root>
<client>[ClientName]</client>
<Project>[ProjectName]</Project>
<Me>[Me]</Me>
</root>
I got VB prompts asking(all vb is placed in Normal) questions that fill the Content Controls Richtext with values.
x = InputBox("Project Name?", "title")
If Not x = "" Then oCC.Range.Text = x
The problem is that after i save it to a new document the default values i.e "[ProjectName]" reappear and my vb code affect is lost.
- I don't want to delete the XMLMapping.
- I don't mind Using vb code that Set the values inside the XML i just don't know how.
- Offer a better solution then 2.
Thanks in advance