说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> VB软件开发
1)  VB software development
VB软件开发
2)  VB software
VB软件
1.
Computer Supplementary Test System Designed With VB Software;
VB软件设计的计算机辅助考试系统
2.
In view of the fact the tool profession extrusion screw tap life is continuously unstable,the author using VB software to improve the key parameters,the author got the potential best value for it,and displaying data obtained through experiments.
鉴于挤压丝锥存在的寿命不稳定的问题,基于VB软件开发环境,对挤压丝锥寿命的主要参数进行了优化设计,得到了影响挤压丝锥寿命参数的最优值,并进行了实际验证。
3.
It is introduced for the method of VB software based implementation of paperless recording design of echo sounder, the designs of real time recording interface and aftertime inquiring interface are described, and the flow chart of the designs are given.
介绍了采用VB软件实现回声测深仪的无纸化记录的设计方法,侧重阐述了实时记录界面和日后查询界面的设计,并给出了设计的流程图。
3)  VB exploitation
VB开发
4)  software design
软件开发
1.
Software Design of a Motion Controller Based on DSP;
基于DSP的运动控制器的软件开发
2.
In Integrated Development Environment for Visaul C ++ , the method of the hard-ware-in-the-loop simulation(HILS) system control software design is discussed using API function and multiple IO card.
PCL-722是一种性能优异的144位DIO卡,适用于各种状态控制系统,本文时该DIO卡在实际应用当中的功能和有关硬件驱动程序接口,以及利用多片DIO卡在VisualC++环境下利用系统提供的API函数进行半实物仿真系统监控软件开发的方式进行了讨论。
5)  Software developing
软件开发
1.
Usiog a marine auxiliary boiler automatic control system as an object, under the technology of software developing and microcomputer interface, a marine auxiliary boiler automatic control simulation system was built.
以船舶辅锅炉自动控制系统为对象 ,应用微机软件开发技术和硬件接口技术实现了船舶辅锅炉自动控制仿真系统。
2.
Aiming at the present circumstance of less computer technics used in ferroalloys domain, this paper demonstrates the process and procedure to develop the relative software in ferroalloys burden calculation based on physical and chemical knowledge through the software developing practice of burden calculation for manganese bearing ferroalloys.
针对目前计算机技术在铁合金领域应用较少的实际情况,通过锰系铁合金配料计算软件开发的实践,详细阐述了以铁合金配料计算为基础使用相关软件进行开发的方法及步骤。
3.
It is very important how to build architecture of applicaion in Internet/Intranet environment in order to serve current software developing.
如何在Internet/Intranet环境下构筑应用软件的体系结构以适用于当前的软件开发工作便成为一个非常重要的研究课题。
6)  software development
软件开发
1.
Model building and software development for gas membrane separation;
气体膜分离数学模型建立及软件开发
2.
Logging interpretation and software development of reservoir monitor tool;
RMT测井解释方法及软件开发研究
3.
Calculation analysis and software development of primary aluminum casting optimized proportioning aluminum method;
原铝铸造优化配铝算法分析与软件开发
补充资料:在公路低级处理中VB对AutoCAD二次开发

在公路地基处理中可能会遇到钢钎加固的情况,在作图之中需要对上千个点逐一编号,重复工作量很大。如果通过编制程序可以提高工作效率,一天的工作量可以在几分钟之内解决,而且能够避免视觉疲劳而引起的错误。
AutoDesk公司提供了面向对象的编程接口ActiveXAutomation,它使用了OLE的Automation技术。AutoCAD被登录为一个其它Windows的应用程序可以操作的对象,用户可以用VB来访问AutoCAD的所有图形对象和非图形对象,进行二次开发,开发过程完全独立于AutoCAD本身。
有关VB开发AutoCAD的技术环节,在网上可以找到,特别是崔航的有关文章值得同行借鉴。下面给出程序以及简单的实现方法步骤。
程序用到的控件有:Command1点击可连接AutoCAD,并在其中标注钢钎编号;Command2点击以释放AutoCAD所占内存;txtX、txtY输入编号文字相对于钢钎点的相对坐标;Text1、Text2编号文字的高度和旋转角度。现在给出的程序很短而且并不难,就不再作过多注释。作图当中先打开钢钎(在图中体现为点对象)位置的图层,然后运行程序,遍历所有对象并逐一对点对象编号。为节约时间还可以在程序中声明一个"选择集"对象,只对选择集中的对象遍历。下面给出的程序运行后的结果按画点的顺序,而不是按坐标顺序编号,如果有特殊的需要,可以通过相应的排序算法实现。


PrivateSubCommand1_Click()
CallAcadConnect


DimacadUtilAsObject


SetacadUtil=AcadApp.ActiveDocument.Utility'设置Utility对象


DimstxAsDouble
DimstyAsDouble


DimstmStringAsString
stmString=acadUtil.GetString(0,"按任意键开始........")


DimiAsInteger
DimoBjAsAcadObject
DimstxxAsVariant


i=1
ForEachoBjInAcadApp.ActiveDocument.ModelSpace'遍历工作区中的实体


IfoBj.EntityName="AcDbPoint"Then
stxx=oBj.Coordinates
stx=stxx(0)
sty=stxx(1)
CallDrawTxt(stx+Val(txtX),sty+Val(txtY),Val(Text1),0.8,Val(Text2),str(i))
i=i+1
EndIf


NextoBj


EndSub


PrivateSubCommand2_Click()
CallAcadQuit
EndSub


文件模块



PublicAcadAppAsAcadApplication


PublicSubAcadConnect()'连接Cad
OnErrorResumeNext
SetAcadApp=GetObject(,"autocad.application")
IfErrThen
Err.Clear
SetAcadApp=CreateObject("autocad.application")
IfErrThen
MsgBox"不能运行AutoCAD,请检查是否安装!",vbOKCancel,"警告!"

说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条