var fDesc=new Array();
fDesc[0] = "Virtual Data Access Components (VirtualDAC, formerly known as VirtualTable), is a library of components that extends data processing capabilities in Delphi and C++Builder including Community Edition on Windows, Linux, macOS, iOS and Android for both 32-bit and 64-bit platforms.
VirtualDAC consists of components that allow creating in-memory data storage and executing complex SQL queries to in-memory tables when developing Delphi applications.
Key features:
*Interface compatible with standard data access methods, such as BDE and ADO VCL, FMX, LCL development platforms are available.
*Separated run-time and GUI specific parts allow you to create pure console applications such as CGI.
*Unicode and national charset support You can always find the latest version of the product on the official Devart website.";
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 = '';
}
}