<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>OpenDCL on ManuSoft</title><link>https://www.manusoft.com/tags/opendcl/</link><description>Recent content in OpenDCL on ManuSoft</description><generator>Hugo</generator><language>en-us</language><copyright>1991–2026</copyright><lastBuildDate>Fri, 05 Aug 2011 14:32:27 +0000</lastBuildDate><atom:link href="https://www.manusoft.com/tags/opendcl/index.xml" rel="self" type="application/rss+xml"/><item><title>OpenDCL 6</title><link>https://www.manusoft.com/archive/blog/opendcl-6/</link><pubDate>Fri, 05 Aug 2011 14:32:27 +0000</pubDate><guid>https://www.manusoft.com/archive/blog/opendcl-6/</guid><description>&lt;p&gt;You may not have noticed, but AutoLISP is still alive and kicking. This is evidenced by the growing community of developers and hobbyist programmers using the latest release of &lt;a title="OpenDCL" href="http://www.opendcl.com" target="_blank"&gt;OpenDCL&lt;/a&gt;, the free graphical user interface library for AutoLISP applications. If you&amp;rsquo;re not familiar with OpenDCL, check out the &lt;a title="OpenDCL 6 Released" href="http://opendcl.com/wordpress/?p=158" target="_blank"&gt;newly released OpenDCL 6&lt;/a&gt;.&lt;/p&gt;</description></item><item><title>Belgium Bound</title><link>https://www.manusoft.com/archive/blog/belgium-bound/</link><pubDate>Sun, 06 Jun 2010 08:24:11 +0000</pubDate><guid>https://www.manusoft.com/archive/blog/belgium-bound/</guid><description>&lt;p&gt;&lt;a href="http://www.bricsys.com"&gt;Bricsys&lt;/a&gt; asked me to give a short presentation about &lt;a href="http://opendcl.com/wordpress/?p=137"&gt;OpenDCL&lt;/a&gt; to developers at their &lt;a href="http://www.bricsys.com/conference/"&gt;Bricsys 2010 Conference&lt;/a&gt; in Bruges next week. I&amp;rsquo;m looking forward to meet keynote speaker &lt;a href="http://www.deelip.com"&gt;Deelip Menezes&lt;/a&gt; and other familiar names in the CAD community, and of course planning to learn more about the ever evolving Bricscad platform.&lt;/p&gt;</description></item><item><title>OpenDCL Quick Intro</title><link>https://www.manusoft.com/archive/blog/opendcl-quick-intro/</link><pubDate>Sun, 24 Aug 2008 14:42:00 +0000</pubDate><guid>https://www.manusoft.com/archive/blog/opendcl-quick-intro/</guid><description>&lt;p&gt;If you&amp;rsquo;re an AutoLISP programmer, you&amp;rsquo;ve probably heard about &lt;a href="http://www.opendcl.com/"&gt;OpenDCL&lt;/a&gt;. Maybe you&amp;rsquo;ve even checked it out, but it looked complicated and you weren&amp;rsquo;t sure whether it was worth the trouble to learn how to use it. Either way, do yourself a favor and spend 10 minutes to go through the following 10-step quick introduction to OpenDCL.&lt;br /&gt;&lt;ol&gt;&lt;li&gt;&lt;a href="http://sourceforge.net/project/showfiles.php?group_id=187950&amp;amp;package_id=220267&amp;amp;release_id=570817"&gt;Download&lt;/a&gt; and install OpenDCL Studio. Select the latest version in your desired language (ENU in the filename means US English). The download is an .msi file that can be cleanly uninstalled afterward.&lt;/li&gt;&lt;li&gt;Start AutoCAD (2004 or later). Use the APPLOAD command to load _MasterDemo.lsp from the OpenDCL Studio samples folder (it will be located in a language subfolder of the main OpenDCL Studio folder). When you close the APPLOAD dialog, the OpenDCL &amp;lsquo;MasterDemo&amp;rsquo; dockable form will appear.&lt;/li&gt;&lt;li&gt;Click on the [ListView] button to run the ListView sample. The ListView sample is very simple and will demonstrate some basic principles of OpenDCL. Leave it running as you proceed through the following steps.&lt;/li&gt;&lt;li&gt;Locate and open ListView.lsp in the OpenDCL Studio samples folder. ListView.lsp contains all the code for the ListView sample. Look for the c:ListViewDlg_Close_Clicked function defined near the end of that file. That function is called an &amp;ldquo;event handler&amp;rdquo;, and it is the lisp function that is executed when the [Close] button is pressed. The event handler for the [Close] button simply closes the dialog. The c:ListViewDlg_OnInitialize event handler function initializes the controls on the dialog before it is displayed.&lt;/li&gt;&lt;li&gt;Locate and open ListView.odcl in the OpenDCL Studio samples folder. Files with an .odcl extension can be opened and edited in OpenDCL Studio. OpenDCL Studio is used to design the user interface elements in an OpenDCL project. In the project tree pane, open the &amp;lsquo;Modal Forms&amp;rsquo; folder, then double click on ListViewDlg. The ListView form will be displayed in design mode.&lt;/li&gt;&lt;li&gt;Click on the [Close] button on the ListView form. In the font toolbar at the top of the editor, press the [B] button to make the font bold. Notice that the button&amp;rsquo;s caption becomes bold. In the &amp;lsquo;Properties&amp;rsquo; pane, double click on the &amp;lsquo;Height&amp;rsquo; property value and change it to 20. Press [Enter] to apply the new value. Use your mouse to drag the bottom of the button in design view to resize it dynamically.&lt;/li&gt;&lt;li&gt;Leaving OpenDCL Studio open, switch back to AutoCAD. Resize the ListView dialog, and notice how the controls it contains are also resized. Now switch back to OpenDCL Studio, make sure the [Close] button is selected, then click in the right column of the &amp;lsquo;(Wizard)&amp;rsquo; property in the Properties pane (or right click on the button control and select &amp;lsquo;Properties&amp;rsquo; in the control&amp;rsquo;s context menu). In the Control Properties Wizard, the Geometry tab shows that the button&amp;rsquo;s &amp;ldquo;Left Side Alignment&amp;rdquo; has been set to &amp;ldquo;Offset From Center of Dialog&amp;rdquo; and it&amp;rsquo;s &amp;ldquo;Top Side Alignment&amp;rdquo; has been set to &amp;ldquo;Offset From Bottom Edge&amp;rdquo;. Once these properties are set, no additional code is needed for the control to react correctly when the dialog is resized.&lt;/li&gt;&lt;li&gt;Exit AutoCAD, then restart. Enter the OPENDCL command. This command demand-loads the OpenDCL Runtime using AutoCAD demand loading mechanism. The OpenDCL Runtime must be loaded before the OpenDCL functions will work. The OpenDCL Studio installation includes OpenDCL Runtime, so it already exists on your computer.&lt;/li&gt;&lt;li&gt;If you are developing an application for use by others, you&amp;rsquo;ll need to download and distribute the &lt;a href="http://sourceforge.net/project/showfiles.php?group_id=187950&amp;amp;package_id=219635&amp;amp;release_id=571922"&gt;OpenDCL Runtime&lt;/a&gt; along with your application. This is best done by incorporating the OpenDCL Runtime merge module for your language directly into your own application&amp;rsquo;s installation script. Alternatively, you can distribute the standalone OpenDCL Runtime .msi file for your language, or publish the URL where end users can download the latest version.&lt;/li&gt;&lt;li&gt;Switch back to OpenDCL Studio and double click on the [Close] button control. Intelligent help displays all the properties, methods, and events of the selected control, including their AutoLISP syntax. Click on a property, method, or event in the left pane to see detailed information for it.&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;Once you complete these ten steps, you are only a few minutes away from creating a fully functional OpenDCL application. Give it a try!&lt;/p&gt;</description></item><item><title>OpenDCL 4.1 Released</title><link>https://www.manusoft.com/archive/blog/opendcl-41-released/</link><pubDate>Wed, 21 Nov 2007 10:50:00 +0000</pubDate><guid>https://www.manusoft.com/archive/blog/opendcl-41-released/</guid><description>&lt;p&gt;&lt;a href="http://www.opendcl.com"&gt;OpenDCL 4.1&lt;/a&gt; adds support for the AutoCAD 2008 64-bit platform, includes many improvements in the OpenDCL Studio editor, and has a completely rewritten grid control.&lt;br /&gt;&lt;br /&gt;Next on the agenda is adding support for localization so that local language translations can be easily created.&lt;/p&gt;</description></item><item><title>OpenDCL 4.0 Debuts</title><link>https://www.manusoft.com/archive/blog/opendcl-40-debuts/</link><pubDate>Wed, 01 Aug 2007 09:51:00 +0000</pubDate><guid>https://www.manusoft.com/archive/blog/opendcl-40-debuts/</guid><description>&lt;p&gt;OpenDCL 4.0 has finally been released. If you&amp;rsquo;re not familiar with OpenDCL, check it out at &lt;a href="http://www.opendcl.com"&gt;&lt;a href="https://www.opendcl.com"&gt;www.opendcl.com&lt;/a&gt;&lt;/a&gt;, or on SourceForge at &lt;a href="http://sourceforge.net/projects/opendcl/"&gt;sourceforge.net/projects/opendcl&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;OpenDCL, based on the original commercial ObjectDCL software by Chad Wanless, is a modern replacement for the old DCL dialog control language in AutoCAD. The current OpenDCL Runtime supports AutoCAD 2002 through 2008 (except AutoCAD 2008 x64). It is designed to give AutoCAD end users and AutoLISP application developers a simple yet powerful way to design and use rich user interfaces in their applications.&lt;br /&gt;&lt;br /&gt;The goal for version 4.0 was to get it stable and fix all the bugs, with minimal new feature development. OpenDCL 4.1 will add support for AutoCAD 2008 x64. After that we will start working on localized language versions, and adding new features.&lt;br /&gt;&lt;br /&gt;OpenDCL is licensed under the &lt;a href="http://www.gnu.org/licenses/licenses.html#GPL"&gt;GNU General Public License&lt;/a&gt; (GNU GPL) open source license, completely free to use, and source code is available on SourceForge.&lt;/p&gt;</description></item><item><title>Introducing OpenDCL for AutoCAD</title><link>https://www.manusoft.com/archive/blog/introducing-opendcl-for-autocad/</link><pubDate>Wed, 31 Jan 2007 19:44:00 +0000</pubDate><guid>https://www.manusoft.com/archive/blog/introducing-opendcl-for-autocad/</guid><description>&lt;p&gt;AutoLISP programmers may remember a product named ObjectDCL, by 3rd Day Software. ObjectDCL was &lt;a href="http://www.cadopolis.com/autocad/objectdcl-now-open-source-project-.shtml"&gt;released as open source in the summer of 2006&lt;/a&gt; by developer Chad Wanless due to his inability to continue supporting the software because of &amp;ldquo;health reasons&amp;rdquo;. At the time, many users of ObjectDCL hoped that someone would update the code to work in AutoCAD 2007. Programmer David Robison did some work to get AutoCAD 2007 supported, but the project has been languishing, almost to the point of extinction.&lt;br /&gt;&lt;br /&gt;After being asked by several ObjectDCL users whether I could help, I decided a few weeks ago to contribute to the community by getting the original C++ code updated to support AutoCAD 2007. As I am wont to do, I&amp;rsquo;ve ended up re-architecting much of the code in the process.&lt;br /&gt;&lt;br /&gt;The results of my work are available now at the new &lt;a href="http://sourceforge.net/projects/opendcl"&gt;OpenDCL project&lt;/a&gt; on SourceForge. The new 4.0 release is still in the alpha testing phase. If you program in AutoLISP and want to create rich user interfaces for your applications, check it out!&lt;/p&gt;</description></item></channel></rss>