var fDesc=new Array(); fDesc[0] = "ABarcode for Access is an Access add-in that allows you to print bar codes in any Access report. While the report is printing, ABarcode hides the text boxes, and draws its contents as bar code symbols. These symbols can be later decoded by a bar code reader (light pen, CCD scanner, laser gun, etc.), which will enter it into a computer in its original human readable form.
Bar code symbols are printed at the same position that you placed your text boxes. Dimensions, colour, and font are also the same as your text box, and any other symbol specifications are easily set up with the ABarcode wizard."; 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 = ''; } }