How can I programmatically customize outlook in c#

  • Thread starter Thread starter Ana
  • Start date Start date
A

Ana

I would like to remove all advanced features and customize ( include
toolbars,right click context menus ..)


and to customize outlook the way I want :

The outlook will have only my new tool bar and ribon and prevent from the
user to customize it

thanks
 
There are limits to how much you can customize the user interface, some
things just aren't exposed to you and some things can't be removed. For the
ribbon you can use the <startFromScratch> XML tag and then create your own
ribbon from scratch, for CommandBars you can hide the built-in ones. But
there are limits as I said.

You need to go to the Office developer Web site at MS and start reviewing
all the material there on the ribbon for starters.
 
Back
Top