var fDesc=new Array(); fDesc[0] = "Many applications in production today can automatically detect when a new version is available, and download the update. In Part I of this article, you saw how you could enhance existing Visual Basic 6.0 applications to include such auto-updating functionality. The key was to utilize a new feature of the .NET Framework 2.0 known as ClickOnce deployment. ClickOnce provides the functionality to detect application updates, prompt the user to download, install the updates, and launch the new version of the application. ClickOnce can even be used for the initial application deployment, thus simplifying the process of getting the application out to a large number of users."; 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 = ''; } }