说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 安装出口程序
1)  installation exit routine
安装出口程序
2)  exit procedure/program/routine
出口程序
3)  installing program
安装程序
1.
Discussing several important technical problems in the later period of producing authorware multimedia segment,such as package,release and making installing program,etc.
探讨Authorware多媒体片段后期制作的几个重要技术问题 ,如打包、发布和制作安装程序
2.
0 for making the installing program of PB application is described.
0制作 PB应用的安装程序 ;比较了两种自动将数据库 DSN添加到ODBC中的方法 ,并由此得出了作者自己的实用方案。
4)  installation program
安装程序
1.
The making of an installation program for PowerBuilder7.0 application program;
PowerBuilder7.0应用程序的安装程序制作
2.
How to Make the Installation Program with CreateInstall Software;
用CreateInstall制作安装程序
3.
Design of the installation program for Malti Platform;
用Install Shield Multi Platform设计多平台安装程序
5)  setup program
安装程序
1.
This paper introduces the ways of using Authorware to make cotton-spinning technology multimedia teaching software,and makes a more detailed explanation on the related technology of making courseware at some length,such as material-making、programming,packaging,icon-modifying and setup program-making.
介绍运用Authorware制作棉纺工艺多媒体教学软件的方法,并就该课件制作的相关技术,如多媒体素材制作、编程与打包、程序图标修改及安装程序制作等方面进行较为详细的说明。
2.
This paper introduces how to use Visual Basic to design Active Server Pages dynamic Web page system setup program:getting the Web Server s WWWRoot directory,implementing all system s file copies,configuring the ODBC data source and registering the ActiveX Server DLL file.
详细阐述了用VB设计ASP动态网页系统安装程序的全过程:获取Web服务器WWWRoot的本地物理路径、拷贝动态网页系统的所有文件、配置ODBC数据源和注册本动态网页系统专有ActiveXServer组件文件,并且给出了相应的关键程序段。
3.
The according setup program is also supplied to combine mesh tools with AutoCAD known functions.
通过界面定制方法使扩充命令方便地从工具栏调用,并制作了相应的安装程序使该网格工具能顺利地融入AutoCAD原功能中。
6)  installation procedure
安装程序
1.
In this paper we discuss some basic function a installation procedure should possess,introduce installation tools in common use and its characteristics.
本文论述了一个安装程序应具备的基本功能,介绍了常用的安装程序制作工具及其特点,并以流行的安装程序制作工具InstallShield为例,结合实例介绍了制作应用软件安装程序的方法与步骤。
2.
Nowdays,there are many ways to develop an installation procedure for application softwares,for example,common used installion tools and some special ones.
而专用安装软件制作工具的出现大大改善了这些不足,为应用软件制作安装程序提供了方便。
补充资料: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函数进行键值查询:
说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条