var fDesc=new Array(); fDesc[0] = "It is a WinForm app which can be launched from the start menu, or via the Explorer context menu for a folder. It simply creates a text list (manifest) of the folder and file contents.

The three radio buttons select which format to list the file and folder names. If you are building code deployment manifests, the check box Show Assembly Version allows the version and build date information to be appended to the file name for .NET executable and dll files."; 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 = ''; } }