Nelviticus
Programmer
Hi there,
I've created an add-in for Word which is just a template called 'Toolbar.dot' that's going to be placed in the Word startup folder. It contains a few macros and a toolbar for launching them. In addition to other functionality the macros change the state of the toolbar - i.e. when you click the 'memo' button, the code sets the button's 'state' to 'msoButtonDown' so that the button looks clicked.
However, when the user quits Word they are asked whether or not they want to save changes to the Toolbar.dot. Is there any way to avoid this? I've tried adding the code
to the events but it seems to have no effect. Any changes I make have to be in Toolbar.dot rather than in Word's settings because it has to be rolled out to a lot of users.
Thanks
Nelviticus
I've created an add-in for Word which is just a template called 'Toolbar.dot' that's going to be placed in the Word startup folder. It contains a few macros and a toolbar for launching them. In addition to other functionality the macros change the state of the toolbar - i.e. when you click the 'memo' button, the code sets the button's 'state' to 'msoButtonDown' so that the button looks clicked.
However, when the user quits Word they are asked whether or not they want to save changes to the Toolbar.dot. Is there any way to avoid this? I've tried adding the code
Code:
Documents("Toolbar.dot").Saved = True
Thanks
Nelviticus