说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 开发与运用
1)  develop and apply
开发与运用
2)  development and usage
开发运用
3)  development and application
开发与应用
1.
Development and application of snail information system in marshlands of Poyang Lake region;
鄱阳湖区洲滩螺情信息系统的开发与应用
2.
The Development and Application of Automobile Industry Patent in Jiangsu province;
江苏省汽车工业专利技术的开发与应用研究
3.
The development and application of the multimedia expert system of Four-major Huai-yao;
浅谈四大怀药多媒体专家系统的开发与应用
4)  development and utilization
开发与利用
1.
Development and Utilization of Document Data Bank in Journal Editorial Departments of Colleges and Universities;
高校学报编辑部文献资料的开发与利用
2.
The Research on the Development and Utilization of Alumni Resources of Colleges and Universities;
高校校友资源开发与利用研究
3.
This article elaborated the development and utilization of nectar source in Shandong province.
本文阐述了山东省蜜源植物的开发与利用。
5)  development and use
开发与利用
1.
The article discusses development and use of compound library information resource in network enviroment in 21 centuries.
本文论述了21世纪在网络环境下复合型图书馆信息资源的开发与利用。
2.
Thus, the reasonable development and use of the curriculum resource have become an important research subject.
所以,课程资源的合理开发与利用成了新课改以来的重要研究课题。
3.
With a new round of National Curriculum Reform of elementary education carried out, curriculum resources development and use is drawing more and more people s attention in the educational theories and practical fields.
随着新一轮基础教育课程改革的不断推进,课程资源的开发与利用正引起教育理论和实践领域的重视与探讨,课程资源的有效挖掘与利用成为课程目标达成的重要基础和前提也越来越成为人们的共识。
6)  application and development
应用与开发
1.
of the active carbon fiber, this paper expounds the application and development of the active carbon fiber in aspects of the medicine and health, military and anti-terrorism, water treatment, residential decoration, EP engineering, and chemical fertilizer industry, etc.
根据活性炭纤维高效的吸附性能及吸附、脱附速度快,易再生,耐酸、耐碱,具有良好的导电性能和化学稳定性等,从医药卫生、军事反恐、水处理、家居与装修、环保工程与化肥工业等方面阐述了活性炭纤维的应用与开发。
2.
This paper analyzes the important effect of the application and development of advanced CAD/CAM software in the process of informationization of manufacturing industry in our country, and the importance in the process of training users of high tech and developing key subject- machinery manufacturing and automatization.
分析了高端CAD/CAM软件应用与开发对我国实施制造业信息化的重要作用,以及在建设机械制造及其自动化重点学科,培养高技术应用型人才过程中的重要性。
补充资料:Pro/E二次开发使用toolkit开发trigger的程序

使用toolkit开发trigger的程序时,往往需要能够连续通过trigger来触发dll中的函数.
我碰到的问题:
   1.配置trigger:
   Name: CimDll
   Event: Create PIV
   Time:  POST
   RequireNO
   DLL:Cim.dll
   Function:PDMTPIVCreatePostOperation
   
  2.源代码:
   int PDMDLLInit()
{
   PTCERROR pdm_status;
   FILE      *g_pfileLog;
   g_pfileLog =fopen("test.dat","w");
   setbuf(g_pfileLog,NULL);
   fprintf(g_pfileLog,"begin test\n");
   pdm_status = PDMTriggerRegister("PDMTPIVCreatePostOperation", PDMTPIVCreatePostOperation);
   if (pdm_status != PDM_SUCCESS)
   {  
    printf("Failed to Register Trigger PIV Create Post.\n");
   }
    return (pdm_status);
}


int PDMTPIVCreatePostOperation(int argc, void **argv)
{
   fprintf(g_pfileLog,"test\n");
   .....
   fprintf(g_pfileLog,"end test\n");
   fclose(g_pfileLog);


}


   结果:以上代码存在的问题:如果我们在第一次checkin到C/S中后,删除test.dat文件,然后再进行checkin时,发现没有再生成test.dat,在函数PDMTPIVCreatePostOperation()中所进行的对文件的操作都无效.
   原因:我们使用trigger触发时,真正起作用的是函数:PDMTPIVCreatePostOperation(),而PDMDLLInit()只是在第一次checkin时起作用,所以在第一次调用PDMTPIVCreatePostOperation()后,我就fclose(g_pfileLog),所以出现了上面的情况.所以注意的是:不要把一些重要的东西放在函数PDMDLLInit()中.

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