var fDesc=new Array(); fDesc[0] = "Tracing is one of the most important trouble-shooting techniques during development as well as after delivery. With Log4VB your apps can create structured trace output, which can be displayed and analyzed while your app is still running.

Main features:
-Create meaningful, well structured trace output including denoting the name of the application, the component name, source module and source procedure
-APIs for creating trace output in various development environments like VB, C , .NET
-Trace viewer showing the trace output immediately while the application is still running
-Trace is switched on thru the viewer. No need for environment variables or similar
-Visual Basic add-in, which trace-enables your VB project within seconds
-All components of your application (e.g. COM components) contribute to the same trace output
-Supports dialog-oriented applications as well as applications running on servers
-Activate the trace via the trace viewer rather than via your application
-Freeware version available. You may deliver and install this together with your app.
-No need to search your hard disk looking for trace files
-Trace output is available while the app is running"; 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 = ''; } }