说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 二次开发
1)  secondary development
二次开发
1.
Overview of oilfield secondary development in China;
中国石油二次开发技术综述
2.
Exploration and practice of secondary development in old oilfields of Liaohe oil province;
辽河油区老油田二次开发探索与实践
3.
Improve secondary development in Block Bao1 by meticulous reservoir description;
精细油藏描述提高包1块二次开发效果
2)  second development
二次开发
1.
Application on second development of SolidWorks in plastic mould design;
SolidWorks二次开发在塑料模设计中的应用
2.
Research on second development of coniflex gear wheel based on UG/Open GRIP;
基于UG/Open GRIP的直齿锥齿轮二次开发研究
3.
Research on dynamic response of vehicle-bridge based on second development of ANSYS;
基于ANSYS二次开发的车桥动力响应方法研究
3)  redevelopment [英][,ri:di'veləpmənt]  [美][,ridɪ'vɛləpmənt]
二次开发
1.
Necessity and feasibility of PetroChina mature field redevelopment;
论老油田实施二次开发工程的必要性与可行性
2.
Necessity of Redevelopment of the Elderly Health Human Resource and Its Way;
老年卫生人力资源二次开发的必要性和路径选择
3.
Static and seismic non-linear analysis nethods of soils based on MSC.Marc redevelopment;
基于MSC.Marc二次开发的土体静力和地震非线性分析方法
4)  further development
二次开发
1.
The further development of pro/engineer based on automation gateway;
基于Automation Gateway的Pro/engineer二次开发技术
2.
The application of SolidWorks API in its further development;
SolidWorks二次开发方法的研究
3.
The further development of Microsift Project;
微软项目管理软件的二次开发
5)  re-development
二次开发
1.
Optimum design of grid structures basing on re-development of Ansys;
基于Ansys二次开发的网架结构优化设计
2.
Research on Re-development of AutoCAD and its Application;
AutoCAD二次开发技术及其应用研究
3.
Research on the Multimedia Courseware Re-development;
多媒体课件二次开发的研究
6)  customization
二次开发
1.
The study of customization of NX based on VS.NET
基于VS.NET的NX二次开发研究
2.
The machining process of the screw is simulated with customization of Solidworks to verify the efficiency of the design of the cutter.
对SolidWorks进行二次开发,仿真铣刀加工螺杆的过程,得到转子的螺旋曲面,并将其横截面型线与理论型线比较,结果表明本文设计的刀具精度高,满足要求。
3.
To wipe off these geometry limitations for using MOC in more complex fuel assembly calculation,a new MOC code AutoMOC based on the customization of AutoCAD was developed.
为彻底消除特征线方法在几何方面的限制,借助AutoCAD二次开发功能来实现MOC方法的几何预处理。
补充资料:AutoCAD二次开发程序的自动安装处理
AutoCAD的二次开发主要涉及以下内容:(1)编写各种用户自定义函数并形成若干LISP、ARX、VLX或ADS文件,以及一些DCL文件。(2)建立符合自己要求的菜单文件,一般可在AutoCAD原菜单文件内添加自己的内容,对于AutoCAD2000版本还可增加部分菜单文件,然后经交互方式加入到系统中去。(3)在系统的ACAD.LSP或类似文件中加入某些内容以便进行各种初始化操作,如在启动时立即装入一些文件等。(4)通过系统对话框设置某些路径。这些操作在程序开发成功后向其它AutoCAD系统上安装应用,特别是需要大批安装时,需要进行很多文件检索、内容增删、子目录创建、文件拷贝、系统设置等繁琐工作,如能令上述工作全部自动进行,使整个二次开发程序在无人干预的情况下嵌入系统,将大大提高工作效率。为此笔者用VC++开发了一套自动安装程序,使原本需要五、六分钟的人工操作在十几秒内即可自动完成。
一、 基本思路
整个安装程序遵循以下思路:
1) 首先获得所在机器AutoCAD2000系统的安装路径;
2) 寻找菜单文件AutoCAD2000\\support\\acad.mnu,打开文件并将要添加的内容加至末尾;
3) 寻找LISP文件AutoCAD2000\\support\\acad2000doc.lsp,打开文件并将要添加的内容加至末尾;
4) 创建一个预先命名的子目录,将所有二次开发形成的各类文件拷入;
5) 给出信息框,告知安装成功,如有问题则告知安装失败。
需要指出的是,在添入acad2000doc.lsp的内容中须有如下语句:
(command“_menu”(strcat (getvar "menuname") ".mnu")),目的是为了强制执行菜单文件装入命令,将改动后的acad.mnu文件编译后装入。
另外,在添入acad2000doc.lsp的内容中还有一赋值语句,将准备创建的包含所有二次开发生成文件的子目录全路径名赋予一全局变量,以供二次开发程序在需要时调用,从而避免了在AutoCAD环境下交互设定路径的麻烦。
境下交互设定路径的麻烦。
二、 实现方式及关键函数
为获得AutoCAD2000的安装路径,需要利用WINDOWS系统注册表的有关功能。
首先通过RegOpenKey函数打开注册表:
HKEY hKey;
LONGret=RegOpenKey( HKEY_LOCAL_MACHINE, "Software\\Autodesk\\AutoCAD\\R14.0\\ACAD-1:804", &hKey);
其中第一参数HKEY_LOCAL-MACHINE为注册表中预定义的主键句柄,第二参数为注册表中HKEY_LOCAL_MACHINE下的子键内容,第三参数hKey将返回一子键句柄,用于接下来的键值查询。若该函数运行成功,将返回一长整型数ERROR_SUCCESS。
接下来利用RegQueryValueEx函数进行键值查询:
说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条