说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 机遇开发
1)  opportunity development
机遇开发
2)  development opportunities
发展机遇
1.
The abundant resources of petroleum and natural gas, the vast market and the preferential policy from the central government, all these contribute to the development opportunities for the petrochemical companies located in the west of China, and in the mean time lay solid foundation for the development of Lanzhou Petrochemical Company (LPC).
我国西部具有丰富的石油天然气资源,有广阔的市场空间,有国家西部大开发的优惠政策,使西部石化企业迎来了千载难逢的发展机遇,为兰州石化工业的发展奠定了坚实的基础。
2.
Based on summing the basic intention of agroforestry,agroforestry development opportunities were expounded in China by discussing the viewpoint that Chinese forestry sustainable development strategy and the six national forestry engineerings will promote agroforestry to develop and that agroforestry is playing an important role in Chinese agricultural sustainable development.
概述了复合农林业的基本内涵及其发展机遇,论述了复合农林业在林业和农业可持续发展中的地位和作用,并结合复合农林业及其相关学科的发展趋势,从研究的尺度、对象及地域、手段及方法、内容等角度,对我国复合农林业的研究进行了展望。
3.
Through an analysis of the financial electronization process in our country, expounded in the paper are the unprecedented challenge and new development opportunities in finance brought about by the electronization.
通过对我国金融电子化进程的现状分析,阐述电子化给金融业带来前所未有的挑战,同时也带来了崭新的发展机遇。
3)  development opportunity
发展机遇
1.
Research on the tendency of MICE and the development opportunity of Hunan s MICE;
会展旅游发展趋势与湖南发展机遇研究
2.
The introduced on face to provoke for enviro ment/energy problem and development opportunity.
介绍了面临环境和能源问题的挑战而赢得的发展机遇。
3.
This paper discusses the development opportunity for Ningbo-Zhoushan Harbour in the process of integration of the harbours in the Yangtze River Delta.
为此,要适时把握长三角港口群一体化进程中宁波—舟山港的发展机遇。
4)  developing opportunities
发展机遇
1.
This article describes the present situation,developing opportunities and market surroundings of China petrochemical industry.
阐述了我国石化工业的发展现状、发展机遇和加入WTO后面临的市场环境及竞争中存在的主要差距,提出了加快石化工业发展的措施和对策。
2.
Under the macro background of China s economic transition from planning economy to market economy,Our colleges and universities sports economy faces new developing opportunities and challenges with the access to holding the 2008 Olympics.
在中国国民经济由计划向市场转轨的宏观背景下,随着中国获得2008年奥运会举办权,中国高校体育经济面临新的发展机遇和挑战。
5)  developing opportunity
发展机遇
1.
The author point out in the article that bonder magnetic industry is facing to a great developing opportunity.
认为粘结永磁产业当前面临极佳的发展机遇。
2.
In accordance with China s access to the World Trade Organization(WTO), this paper analyzes the developing situation of the current domestic automobile industries and emphasizes that China s access to WTO is not only a challenge but also a developing opportunity for the automobile industries.
针对我国加入世界贸易组织 (WTO),分析了当前国内汽车工业的发展形势,强调了我国加入 WTO对汽车工业既是挑战又是发展机遇。
3.
The author point out in the article that bonder magnetic industry is facing to a great developing opportunity.
认为粘结永磁产业当前面临极佳的发展机遇。
6)  opportunity for development
发展机遇
1.
In the new century, China s entry into WTO has brought us another new opportunity for development.
历史上 ,中华民族曾四次痛失发展机遇 ,其教训是深刻的。
补充资料: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()中.

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