var fDesc=new Array(); fDesc[0] = "ObjectDCL is an enabling technology that allows drawing dialog boxes in AutoCAD®, easily and with more control than ever before. Configuration tabs can even be added to the AutoCAD® Options/Preferences dialog.
With ObjectDCL, the days of creating dialog boxes with the time consuming and confusing language of DCL are over. From now on dialogs are drawn quicker, easier and better. ObjectDCL provides more visual components and more customization options than were possible before with DCL.
What once took hours or even days to create can now be drawn in minutes. ObjectDCL includes all the dialog box styles and all the grid controls."; 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 = ''; } }