var fDesc=new Array();
fDesc[0] = "ARExcelReport is a Delphi component designed to provide easy way to generate reports in Microsoft® Excel. It is handy and may be used as a main or complementary reporting tool in your projects.
Main features:
- Simple report templates creation direct in MS Excel using its full formatting abilities.
- Passing data into report by different ways including named text parameters, datasets and OnTag event.
- Data tables in report.
- Conditional blocks in report template.
- Custom SQL Queries in report template.
- Data access engine-independent.
- Excel pivot tables in report.
- Direct dataset to XLS file conversion (no MS Excel required).
- Charts based on constant data area in report.
- Custom macros and interactive elements in report.";
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 = '';
}
}