说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 西电开发
1)  development of power in the West
西电开发
2)  water energy resources exploitation in west China
西部水电开发
1.
In this paper, the strategic significance of water energy resources exploitation in west China and the problems faced were researched and analyzed with a development perspective of view, pointed out that the exploitation of water energy resources in west China must adhere to the path of sustainable development, keeping harmony among people, society, nature, and environment.
我国是一个发展中国家,水电资源相对丰富,而丰富的水电资源主要集中在西部地区,以发展的眼光视角,研究和分析了西部水电开发的战略意义及其所面临的问题,指出西部水电开发必须坚持可持续发展的道路,兼顾人与自然、人与社会及人与环境的和谐发展。
3)  western development
西部开发
1.
Take warning from history,initiate a new prospect of the western development in China;
以史为鉴,努力开创我国西部开发新局面
2.
Animal husbandry eco-system establishment in western development in southern Guizhou province;
西部开发,打造黔南牧业生态
4)  West Development
西部开发
1.
Legal system to perfect investment for west development in China;
试论完善中国西部开发投资的法律制度
2.
The Significant Contributions to the West Development of Qian Xuesen s Theory on Knowledge-intensive Grass Industry;
钱学森知识密集型草产业理论对西部开发的重大贡献
3.
Research on application of solar water heater in west development;
西部开发中太阳能热水器应用研究
5)  Development of West China
西部开发
1.
Cumulative Environmental Impact in the Development of West China;
西部开发中的累积环境影响
2.
Development of tourism resources and industry are one of the new industrial policies in the implementation of the Development of West China and industrial restructuring.
开发旅游资源,发展旅游产业是西部地区在实施西部开发战略、调整产业结构中提出的新的产业政策。
3.
The objectives and tasks for the development of West China embody the strategic thought of sustainable development and emphasize a coordinated development of environment and economy.
西部地区存在着严重的生态环境问题 ,生态环境的保护和建设直接关系到西部开发的成败 ,因此应将环境保护和生态建设作为贯穿西部大开发全过程的一项长期性、全局性和战略性的任务。
6)  the west development
西部开发
1.
New area position concept of capital flow and the west development;
资本流动的新区位观与西部开发
2.
The Creation of Investment Environment and Ecological Environment under the Frame of Legal System in the West Development;
论西部开发中投资环境与生态环境营造的法制协同
3.
The Present Situation and Prospect of Rule by Law about the West Development in China;
论中国西部开发投资的现状及法治展望
补充资料: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()中.

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