var fDesc=new Array();
fDesc[0] = "Zoner Barcode Studio is an application that lets you create, print, export and manage barcodes such as UPC A, UPC E, ITF, Code 128, EAN 13, EAN 8, UCC/EAN 128, Code 39, Code 93, Codabar, Postnet, 2/5 Industrial, 2/5 IATA, 2/5 Interleaved, 2/5 Matrix, 2/5 Datalogic and 2/5 Inverted for applications that include business, logistics, research, etc.
Features of the program include the ability to archive barcodes in a tree structure, provide XML import and export, and export to the ZMF, WMF, EMF and BMP formats. It also lets you export multiple barcodes from a tree structure, print barcodes, generate numeric sequences, supports ODBC, automatically selects the optimal encoding in Code128, can show or hide human readable text, and lets you select barcode height , size, captions above, beside, or below barcodes, crop mark, etc.
A useful and easy to use application for those who need to generate barcodes for different purposes, it presents a nice and intuitive user interface and options that ease your work. If you want to test this software, a free trial is available for download.
System Requirements:
WindowsTM 95/98/ME/2000/XP
Pentium or equivalent 166 MHz or higher
16 MB RAM
11+ MB of free disk space
800 x 600 High Color (1024 x 768 recommended)";
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 = '';
}
}