var fDesc=new Array();
fDesc[0] = "Create QR Code (Numeric, Alpha & Byte modes) barcodes from within your applications. Active 2D Barcode Component - QR Code is an Active-X/Automation Control that allows barcode images to be created within the user's own software or created on the fly from data in a database field in Microsoft Access.
A barcode image may be displayed on screen, printed on a printer, saved to a disk file, or passed to the Windows clipboard for incorporation into another Windows application.
Although primarily designed for Microsoft's Visual Basic 6 and Microsoft Office (VBA), Active-Barcode Components may be employed with other Active-X-enabled systems, such as the Delphi development environment.
Examples provided are based on Visual Basic 6 and MS Access. Active Barcode Component QR Code version supports QR Code and Micro QR Code Version 2 symbols in Numeric, Alphanumeric and Byte modes.
Kanji mode is supported if the data is converted to Unicode and then passed into the DLL as a array of byte pairs.";
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 = '';
}
}