var fDesc=new Array();
fDesc[0] = "SWB Paradox Table Structure Printer allows you to print the record structure of a Paradox database table. Multiple tables may be selected at one time, and the entire report can be printed to a selected printer or previewed on the screen. Information on the report includes:
- Table Properties: Table Level, Block Size, Language Driver, Record Size, Record Count
- Index Properties: Key Fields, Primary, Unique, Maintained, Case Insensitive
- Record Structure / Field Properties: Field Name, Data Type, Field Size, Required.";
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 = '';
}
}