1)  Development of western region
部开发
2)  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;
西部开发,打造黔南牧业生态
3)  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;
西部开发中太阳能热水器应用研究
4)  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.
西部地区存在着严重的生态环境问题 ,生态环境的保护和建设直接关系到西部开发的成败 ,因此应将环境保护和生态建设作为贯穿西部大开发全过程的一项长期性、全局性和战略性的任务。
5)  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;
论中国西部开发投资的现状及法治展望
6)  exploration of the west
“西部”开发
参考词条
补充资料: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()中.

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