说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 自动报警程序
1)  automatic alarm program
自动报警程序
1.
A design method of automatic alarm program on PLC control system;
PLC控制系统自动报警程序的设计方法
2)  auto-alarm
自动报警
1.
The design and realization of fire protection auto-alarm;
消防安全自动报警系统设计与实现
2.
The present situation of the applied technology utilized in the fire auto-alarm system;
火灾自动报警系统应用技术的现状
3.
Fire auto-alarm and fire fighting blocking system design in Taiyang mansion;
太阳大厦火灾自动报警消防联动系统设计
3)  automatic alarm
自动报警
1.
The application of fire automatic alarm system in buildings;
浅谈火灾自动报警系统在建筑中的应用
2.
Optical fiber automatic alarm device for medical transfusion;
光纤型输液器液位自动报警装置
3.
Each function of the automatic alarm system for boiler tube leakage is introduced in detail.
对锅炉炉管泄漏自动报警装置的各项功能进行了较为详尽的介绍,对其在1号炉的设计安装进行了分析和简述,并提出了为确保该装置可靠运行应需采取的措施。
4)  automatic warning
自动报警
1.
General discussion on the design of automatic warning system of civil architectural conflagration;
浅谈民用建筑火灾自动报警系统设计
2.
Research on a tyre pressure on-line monitoring and automatic warning instrument;
汽车轮胎气压在线监测和自动报警装置的研究
3.
According to the specialties and service condition at ordinary time of fire in civil air defence, the writer points out that design of fire automatic warning system must meet the relevant standard, principles and rules to make it safe, reliable and advanced in technique.
根据人防工程火灾的特殊性和平时使用情况指出 :火灾自动报警系统的设计必须符合有关标准规范规定 ,做到安全可靠 ,技术先进。
5)  automatic alarming
自动报警
1.
The system functions as detecting unauthorized personal entrance automatic alarming by detecting the motion target.
0的图像自动报警系统,在软件设计上,系统主要包括视频图像采集、视频图像预处理和运动目标检测等几个模块。
2.
The system realizes to detect unauthorized person s entering automatic alarming by detecting the motive target, and use the technology of DSP and CPLD, it makes system the real time performance and the systemic image is of high quality and steady, and the perc.
文章介绍了一种基于DSP的图像自动报警系统,并讲述了该系统的组成、工作原理,提出了系统的硬件设计,重点阐述了运动目标监测和报警算法。
6)  autoalarm [英]['ɔ:təuə,lɑ:m]  [美]['ɔtoə,lɑrm]
自动警报
补充资料: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函数进行键值查询:
说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条