I am working on an Outlook VBA macro that updates existing Word documents. I would like to update the default value of some existing form fields with VBA code but I cannot figure out how.
FormFields("fieldName").Result = myNewValue
is not working : after a refresh (Ctrl+A then F9) the written values are deleted.
I know I can easily do it with custom document properties but it would be more convenient for me to use form fields instead.
Is there ANY way I can update the form field default values?