I am able to create module event handler for save/print but unable to access controls on document to change say ..I have radio button on Document i want to hide it on File-> Save. Any help would be appreciuated suffering from 2 days.Thanks
Share
Place this code in the ThisDocument object in Word VBA. It should allow you to run whatever code you need prior to saving the document.
Note that this will not work until appWord has been initialized, which is why I placed it in the Document_Open event code(there are likely better ways). In other words, this code will not run until you re-open the document.