var fDesc=new Array();
fDesc[0] = "This Add-in for Visual Studio 2005/2008/2010 C/C Win32 projects can automatically control the build number of an executable or dll file.
After instalation of this Add-in just run the Visual Studio and create the new project C 'Win32 Project' or open any existing one. In the Add-in Manager of the Tools menu check this Add-in to turn it on. On the context menu of solution, project or selected projects of the Solution Explorer click on the 'Add Version Information...' menu item. This will add to your project a special file - VersionInfo.h.
In the 'VersionInfo.h' file you can set your configuration for building the version number.";
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 = '';
}
}