var fDesc=new Array(); fDesc[0] = "VBCodeHelper is a multi-function Add-In program for Microsoft Visual Basic 6.0 designed by developers at Frez Systems Limited to remove some of the more tedious and repetative tasks when building applications with Visual Basic.


The Benefits

Less time spent on tedious tasks and more time spent productively
Quick insertion of user-defined error handling within your procedures
Simple organization of procedures within modules with their documentation and error handling status available at a glance
Standardise code documentation through automatic insertion of user-defined boilerplates at the top of procedures and modules
Maintain common user-defined templates that can be quickly and simply inserted into your code
Keep a less cluttered IDE by simply closing all code and form designer windows with the click of a button
Quickly format imported code to a more sensible indentation layout
Remove redundant variable declarations
Organise the tab order and zorder of VB controls
Analyse your code to obtain useful statistics
Quickly remove redundant white space"; 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 = ''; } }