Posts

Showing posts from December, 2014

XML Manager - read and write XML-files

If you want to use XML structures in your project you need to read and create XML files. For this I got a class called XMLManager. The only thing you need for this is a shema of the XML structur you want to read or create.

Create CustomTaskPanes in Office AddIns with C#

Image
To create you own workspace in an Office application like Outlook you need a CustomTaskPane . To call a CustomTaskPane you need to create at first a UserControl . In that UserControl you can build your own layout. After that you need to create a class called TaskPanes. This class contains two functions, one to create a CustomTaskPane and one to remove it. In the create-function you are creating an object of your UserControl and a CustomTaskPane-object. By creating the CustomTaskPane you are giving the UserControl and a headline over.