var fDesc=new Array();
fDesc[0] = "TMS FlexCel Studio for .NET is a 100% managed code Excel file manipulation engine.
Features:
- Generates Excel files from WinForms, WebForms ASP.NET, PocketPC applications, webservices on the fly and fast with FlexCel Studio for .NET
- Native .NET components (no additional OLE/dlls required) allowing to read, create and modify native Excel .XLS and .XLSX files without needing to have Excel installed.
- Supported Excel 97 .XLS file format and Excel 2007/2010 .XLSX format
- Native PDF file export
- Exceptionally fast and solid hand tuned .XLS & .XLSX engine capable of generating thousands files per minute.
- Able to modify .XLS files and keep almost everything existing on the original file, from macros to activex objects.
- Recalculation of more than 200 Excel functions.
- Ability to read and write encrypted .XLS files.
- Completely written in C- 100% managed code, with NO interop and NO p/invokes!";
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 = '';
}
}