var fDesc=new Array();
fDesc[0] = "COMxL RS232C is an ease-to-use and very helpful Add-Ons/Add-Ins for MS Excel 97/2000 's user. It lets you link your instrument to your any Excel worksheet directly via RS232C port. The readings from instrument can go/fill-in anywhere you want to them to go by just simply highlighting the range. The moving direction of fill-in Data can be selected (top-down or left-to-right).
Main Features:
- Link an instrument to YOUR ANY Excel worksheet directly via RS232C port
- Send a command to instrument to download its reading, and timer sampling available
- Import Data to a defined/highlighted/selected range of Excel worksheet
- Date&Time stamping
- Send command / commmands from a file / clipboard to a instrument / other-computer, including waiting command (wait few seconds for response from the instrument)
- Flexible Data-filter for you to get Data you want from the input-strings
- Import Data from a text file
- Getting Multi Data from one output-string line of the instrument is availabl";
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 = '';
}
}