var fDesc=new Array();
fDesc[0] = "OPCData.NET is a 100% managed .NET tool for developing OPC DA and A&E clients, with native support for both 32 and 64 bit operating systems, for developing any type of application in Visual Studio .NET
- Easy to learn
- Easy to implement
- Robust
- Easy Deployment
- Scalable
- Extensive Help
- Free Source
- Tested at OPC Interop for Quality
- 100% managed code
- Assemblies for x86 and x64
- Connect 1 to N OPC Servers
- Read 1 to N Tags
- Write 1 to N Tags
- Read/Write 1/many Tags in a single instruction
- Programmatically/Graphically browse Servers";
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 = '';
}
}