var fDesc=new Array(); fDesc[0] = "Add-in Express Toys .NET is a free Word COM add-in / plugin that adds several useful features to MS Word. This sample addin is based on Add-in Express for Office and .NET Edition and gives you an example of how to create Microsoft Word COM add-ins, how to manage add-in toolbars and controls, and how to get access to Word objects. Add-in Express supports MS Word 2000 - 2010 (32-bit and 64-bit).

Main features:
-Create COM add-in for Microsoft Word 2000, 2002 (XP), 2003 and Word 2007 and Word 2010.
-Create new command bars, command bar controls and handle them.
-Add new or customize existing tabs for the Microsoft Word 2007 Ribbon UI.
-Build the Quick Access Toolbar and customize the Office Menu for Microsoft Word 2007 and the Backstage View for Office 2010.
-Catch any built-in command bars and their controls.
-Override Word events such as BeforeDocumentSave and BeforeDocumentClose.
-Develop smart tag libraries for Word."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }