var fDesc=new Array(); fDesc[0] = "These super-helpful classes, methods and templates will save you loads of time, make your job as a Clarion programmer easier, and maybe even make you look smarter! They handle all kinds of things you have either wished for or cursed about - and maybe even some things you never thought of, but will love once you see them.
Features:
- Over 30 classes
- Over 400 methods
- Over 20 templates
- Easy to use
Classes:
- Progress class to control progressbars
- Page of pages class for reports
- String class with powerful methods for search and replace, reading and writing files, etc.
- Network class that enumerates both local and remote shares for example
- Armadillo classes for working inside the shell and the keycode generator
- INI class with added features
- Export class that can export files or views to text files, such as comma separated or tab delimited
Templates:
- Add Vista manifest to your application.
- Add procedures in application to queue
- Add header sort to a queue listbox
- Call procedure from every procedure
- Call procedure to set app wide control properties"; 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 = ''; } }