说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 跨国开发
1)  transnational exploitation
跨国开发
1.
Risk evaluation of transnational exploitation of China petroleum industry;
中国石油工业跨国开发风险评估和管理
2)  development of multi-national region
跨国区域开发
1.
Takes the project of Baltic Pearl -- the biggest project of our country, developed in multi-national region overseas as an example to carry through research and study on the risk and challenge that China enterprises should face in the development of multi-national regions.
以我国海外最大的跨国区域开发项目——波罗的海明珠项目为例,对中国企业开展跨国区域开发所面对的风险与挑战进行了探索与研究。
3)  Transnationally co-operative development
跨国合作开发
4)  transnational R&D
跨国研发
1.
Transnational R&D and Technology Transfer in China;
论中国境内的跨国研发与技术转移
2.
OBJECTIVE:To discuss the transnational R&D strategy of Chinese pharmaceutical enterprises.
目的 :探讨我国制药企业的跨国研发发展战略。
5)  transnation development
跨国发展
1.
The key topic of the dissertation is how to build the strategy of Chinese corporation’s transnation development by exerting strength.
为我国企业跨国发展战略制定不仅提出了较为充足的理论基础,而且举出了很具参考价值的实际案例。
6)  international petroleum mining
跨国石油开采
补充资料: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()中.

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