var fDesc=new Array(); fDesc[0] = "Build View is a Visual Studio 2008 Add In which will show the progress of the build using the new Windows 7 progressbar.
Build View chooses the most approximate build time based on previous builds of the project and then shows the progressbar. Which means after 2/3 builds, progress bar will start displaying the animation effectively."; 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 = ''; } }