1)development status开发现状
1.Discussion on the development status and trend of functional textiles in China;浅议我国功能性纺织品开发现状及发展趋势
2.The modified mechanism, compound types, development status of products, application character and the guidelines of selective recipe of impact modifier for PVC are described in detail.详细论述了PVC(聚氯乙烯)抗冲改性剂的改性机理、组成物类型、品种开发现状、应用特征及加工者选择抗冲改性剂的基本准则。
3.Through investigating the development status of walnut industry in Danfeng County,the feasible development direction was put forward based on problems existing in walnut industry.通过对丹凤县核桃产业开发现状调查,发现存在问题,提出了切实可行的发展方向。
英文短句/例句
1.The present situation and exploitation strategy for forest tourism development in Jilin Province;吉林省森林旅游开发现状及开发策略
2.Current Status of Coal-bed Gas Exploration in China and Suggestions on Its Development;我国煤层气勘探开发现状与发展建议
3.Current Situation and Considerations for the Development of Variety Salt in Henan Province;河南省多品种盐开发现状及发展构想
4.Research and Development of Methanol Fuel;甲醇燃料的研究、开发现状及发展前景
5.E exploitation Actuality: The travelling exploiture plan and stetting up has been finished.开发现状:已完成旅游开发规划和立项工作。
6.Exploiture Actuality: The Proposal has been finished.开发现状:已完成平羌三峡旅游开发项目建议书。
7.A Study of the Present Conditions and the Models of College Town Development in Our Country;我国大学城开发现状及开发运作模式研究
8.On the Current Situation of Tourist Commodity and Its Development;云南旅游商品开发现状和开发思路刍议
9.Present Industrial Development Situation and Analysis of Prospect on Ginkgo in Zhengzhou郑州市银杏产业开发现状及前景分析
10.Study on the Talent Resources Situation and Measure in Shandong Province;山东省人才资源开发现状与对策研究
11.Development of Human Resources in Our Province and the Strategic Decision;甘肃省人力资源开发现状及战略决策
12.Study on Present Status and Counter Measures of Luzhou Tourist Handicraft Articles Exploration;泸州旅游工艺品开发现状与对策研究
13.Investigation and Research on the Development Status of Walnut Industry in Danfeng County;丹凤县核桃产业开发现状调查与研究
14.The Countermeasures of Travel Development of Erhai Lake in Dali;大理洱海旅游开发的现状及发展对策
15.On Strategy and Development Of Sport Tourism In Xinjiang;新疆体育旅游的发展现状及开发策略
16.A Study on the Present Situation and Development of Tourist Commodity in Fuzhou District;福州市旅游商业发展现状及开发研究
17.On Approach of Development and Present Situation of Forest Resources and Its Utilization in Linzhi County;林芝县林业发展现状及开发利用途径
18.Status and Development Countermeasures on Water Resources Utility in Huzhu互助水资源开发利用现状及发展对策
相关短句/例句
development situation开发现状
1.This article mainly presents its process principle, technology characteristics and development situation, as well as application prospects in the fields of IGCC and chemical industry.本文简要介绍了干法粉煤加压气化的工艺原理、技术特点及开发现状 ,并指出了这种煤气化工艺技术在联合循环发电和煤化工等领域内的应用前景。
2.This paper summarizes the research progress on salidroside in several aspects of physical and chemical properties,pharmacological activities,extraction methods,assaying,chemical synthesis and development situation.对红景天苷理化性质、药理活性、提取方法、含量测定、化学合成及开发现状作一综述。
3)developing status开发现状
1.The developing status and research progress of PEMFC at home and abroad were outlined in the paper.论述了质子交换膜燃料电池的开发现状及国内外研究进展 ;同时介绍了趋于成熟的贮氢技术 ,包括质子交换膜、双极板、膜电极和电催化剂在内的关键技术、应用以及未来展望。
4)development[英][d?'vel?pm?nt][美][d?'v?l?pm?nt]开发现状
1.Research progress of development and application of oligosaccharide;寡糖的开发现状及其应用研究进展
2.Application and Development of HDPE pipe in the world is reported.本文详细阐述了高密度聚乙烯管材国内外发展趋势和应用开发现状。
5)Exploitation[英][,ekspl??'te??n][美]['?kspl??'te??n]开发现状
1.A Contrastive Analysis of the Exploitation of University Sports Intangible Assets;我国高校体育无形资产开发现状的调查分析与对策研究
6)production situation map开发现状图
1.In order to improving mapping efficiency,a new mapping technique for production situation maps is introduced,in which EXCEL is used to manage data and MAPGIS is used to compilation of maps.开发现状图用途广泛,本文针对目前西北分公司编制开发现状图费时费力比较落后的方法,提出了应用EXCEL处理数据和MAPGIS处理图形的开发现状图编制方法,该方法方便快捷,值得推广应用。
延伸阅读
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()中.