mccad 发表于 2008-7-3 00:35:00

OpenDCL软件最新版本下载(v5.0.0.25)[9-23版本]

本帖最后由 作者 于 2008-10-2 7:52:01 编辑 <br /><br /> <p>5.0.0.25:<br/>源码:<a href="http://ftp.mjtd.com/download/soft/opendcl/OpenDCLSource.5.0.0.25.zip"><font color="#000000">http://ftp.mjtd.com/download/soft/opendcl/OpenDCLSource.5.0.0.25.zip</font></a><br/>运行时工具包(英文):<a href="http://ftp.mjtd.com/download/soft/opendcl/OpenDCL.Runtime.ENU.5.0.0.25.msi"><font color="#000000">http://ftp.mjtd.com/download/soft/opendcl/OpenDCL.Runtime.ENU.5.0.0.25.msi</font></a><br/>运行时工具包(中文):<a href="http://ftp.mjtd.com/download/soft/opendcl/OpenDCL.Runtime.CHS.5.0.0.25.msi"><font color="#000000">http://ftp.mjtd.com/download/soft/opendcl/OpenDCL.Runtime.CHS.5.0.0.25.msi</font></a><br/>OpenDcl软件(英文):<a href="http://ftp.mjtd.com/download/soft/opendcl/OpenDCL.Studio.ENU.5.0.0.25.msi"><font color="#000000">http://ftp.mjtd.com/download/soft/opendcl/OpenDCL.Studio.ENU.5.0.0.25.msi</font></a><br/>OpenDcl软件(中文):<a href="http://ftp.mjtd.com/download/soft/opendcl/OpenDCL.Studio.CHS.5.0.0.25.msi"><font color="#000000">http://ftp.mjtd.com/download/soft/opendcl/OpenDCL.Studio.CHS.5.0.0.25.msi</font></a></p><p>中文版界面完善补丁Studio.Res.5.0.0.25.rar(将文件解压后替换C:\Program Files\OpenDCL Consortium\OpenDCL Studio\CHS目录下同名文件):</p><p><a href="http://ftp.mjtd.com/download/soft/opendcl/OpenDCL.Studio.CHS.5.0.0.25.msi"><font color="#000000">http://ftp.mjtd.com/download/soft/opendcl/Studio.Res.5.0.0.25.rar</font></a></p><p>以下是汉化过的界面,主要界面都已经汉化,只是还有许多的提示还没有汉化,以后有时间再慢慢做吧。</p><p></p><p>不过比较麻烦的一件事就是智能帮助中,说明框中的内容不能出现中文,一出现中文就是乱码。再找找有什么办法可以解决。</p>

caoyin 发表于 2008-7-3 14:56:00

这个软件我也汉化过,但是汉化后反而不好用,原有的中文版的属性编辑窗口最好把“名称”部分仍改为英文,这样符合英文函数的编程习惯,智能帮助就不会乱码了

caoyin 发表于 2008-7-3 14:58:00

还有下拉菜单的“项目”的窗体类型部分最好仍使用英文

carrot1983 发表于 2008-7-3 18:19:00

<p>帮助还是英文的。。。</p>

yxp 发表于 2008-7-4 22:05:00

本帖最后由 作者 于 2008-7-11 22:51:48 编辑 <br /><br /> <p>好东西啊,先占个位子,非常感谢。</p><p>有没有简单的例子?像hello word 之类的入门,可以供CAD调用的。</p><p>找到啦。</p><p></p><div align="left"><font face="Verdana" color="#800000"><b>Create an AutoLISP file</b></font></div><div align="left"><font face="Verdana">Open the Visual </font><font face="Verdana">LISP </font><font face="Verdana">editor and create a new </font><font face="Verdana">LISP </font><font face="Verdana">file called 'HelloWorld.lsp'. Save it in the same location as the project file (in the AutoCAD search path).</font></div><div align="left"><font face="Verdana"><br/></font></div><div align="left"><img alt="Assign a Lisp File by double clicking the .Lsp Icon" src="mk:@MSITStore:D:\Program%20Files\OpenDCL%20Consortium\OpenDCL%20Studio\CHS\OpenDCL.chm::/helloworld3.gif" align="right"/><font face="Verdana">You can associate a </font><font face="Verdana">LISP </font><font face="Verdana">file with the project by double clicking on the 'Visual/AutoLISP File Name' icon in the project window on the right side of the Editor Workspace. Code generated by the editor can be automatically added to this file when defining events and will be demonstrated below. </font></div><div align="left"><font face="Verdana">&nbsp;</font></div><div align="left"><font face="Verdana">Cut and paste the 2 functions in the code below into the new file.</font></div><div align="left"><font face="Verdana"><br/></font></div><div align="left"><font face="Verdana">; the following command will ensure the </font></div><div align="left"><font face="Verdana">; appropriate OpenDCL ARX file is loaded</font></div><div align="left"><font face="Verdana">(</font><font face="Verdana" color="#0000ff">command </font><font face="Verdana">"OPENDCL")</font></div><div align="left"><font face="Verdana"><br/></font></div><div align="left"><font face="Verdana">(</font><font face="Verdana" color="#0000ff">defun</font><font face="Verdana"> c:Hello ()</font></div><div align="left"><font face="Verdana">&nbsp;&nbsp; ; call the method to load the Hello.odcl file.</font></div><div align="left"><font face="Verdana">&nbsp;&nbsp; (</font><font face="Verdana" color="#0000ff">dcl_Project_Load "HelloWorld" T</font><font face="Verdana">)</font></div><div align="left"><font face="Verdana">&nbsp;&nbsp; ; call the method to show the Hello world dialog box example</font></div><div align="left"><font face="Verdana">&nbsp;&nbsp; (</font><font face="Verdana" color="#0000ff">dcl_Form_Show</font><font face="Verdana">
                        </font><font face="Verdana" color="#008000">HelloWorld_Form1</font><font face="Verdana">)</font></div><div align="left"><font face="Verdana">&nbsp;&nbsp; (</font><font face="Verdana" color="#0000ff">princ</font><font face="Verdana">)</font></div><div align="left"><font face="Verdana">)</font></div><div align="left"><font face="Verdana"><br/></font></div><div align="left"><font face="Verdana">You can now load this code and type 'Hello' at the command prompt.&nbsp; The dialog should display as you last saved it. As the OK button hasn't been assigned an action yet, clicking it will have no effect. To close the dialog, click on the X at the upper right hand corner of the dialog.</font></div>

vken7az2p 发表于 2008-7-5 12:08:00

<p>请问我在执行此软体时出现以下讯息<br/>The OpenDCL local language resource module was not found or could not be loaded.<br/>OpenDCL cannot continue.<br/>Please reinstall OpenDCL Runtime to correct the problem.<br/>该怎样处理呢?<br/>烦请各位高手帮忙一下谢谢</p>

north911 发表于 2008-7-5 19:40:00

<p>你是不是把安装文件原来 的名字改了,我也出现过这个问题,名字改回去之后就好了,现在也没搞清楚是不是名字改了的原因</p>

vken7az2p 发表于 2008-7-6 07:07:00

<p>可能是这样吧<br/>但每次当我有安装opendcl套件<br/>却还是会再出现这讯息<br/>只是不清楚<br/>当电脑中存在 4.1 及 5.0 两版本的档案<br/>该怎样处理<br/>不知道各位又是怎样处理呢<br/></p>

zh74 发表于 2008-7-10 23:51:00

谢谢分享,学习学习

hbgsw 发表于 2008-7-13 09:16:00

不错啊 ,谢谢分享。。。
页: [1] 2 3 4
查看完整版本: OpenDCL软件最新版本下载(v5.0.0.25)[9-23版本]