var fDesc=new Array(); fDesc[0] = "The Code Viewer is a COM Add-In for VB 6.0 designed to allow you to browse through your code in a tree structure based on the code logic.
You can easily look through the functions contained within a VB file to check the flow of execution to find errors in your logic.

Different types of code are highlighted in different colours, and you can choose to see variable and constant declarations as well."; 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 = ''; } }