Guest
Guest
|
Hello ADX Team,
I have found an answer how can this be done on ADX1.
But I can't understand how to do this on ADX2.
For example, I need to insert a button before
the Save button in Word.
Thanks.
|
|
Dmitry Kostochko
Add-in Express team
Posts: 2880
Joined: 2004-04-05
|
You should use the Before property. The Save button is the third on the Standard command bar of MS Word.
I can show it step-by-step:
1. Create a new add-in (File|New|Other -> Add-in Express 2.0 -> MS Office COM Add-in)
2. Add the TadxCommandBar component to AddInModule
3. Enter "Standard" to the CommandBarName property
4. Add a new button to the Controls property
5. Enter "3" to the Before property (the button will be inserted before the third control on the command bar)
6. Compile and register the project.
7. Run Word.
Sincerely,
ADX Support Team |
|