说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 北部湾经济区开放开发
1)  developing and opening of economic zone of Beibu Gulf
北部湾经济区开放开发
2)  Hangzhou Bay Economic Development Area
杭州湾经济技术开发区
3)  The Beibu Gulf Economic Zone
北部湾经济区
1.
Discussion about Regional Tourism Collaboration in the Beibu Gulf Economic Zone
北部湾经济区区域旅游协作探讨
2.
Guangxi University clings the Beibu Gulf economic zone developmental strategy,makes the specialized structural adjustment positively,develops for the economic zone opening and advances exudes the Beibu Gulf economic cooperation to provide the essential talented person support.
广西北部湾经济区的开放开发,人才是关键。
3.
Rongxian lies in the convergence zone of the Beibu Gulf economic zone and the Pearl River Delta economic zone.
容县处于北部湾经济区、珠三角经济区交汇地带。
4)  Beibu gulf economic zone
北部湾经济区
1.
Study of water price for coastal industrial zone of Guangxi Beibu Gulf Economic Zone
广西北部湾经济区临海工业区供水价格研究
2.
On the Intellectual Property and the Development of Digital Library for Universities in Beibu Gulf Economic Zone
知识产权与北部湾经济区高校数字图书馆建设
3.
A Brief Analysis of Local Protectionism in the Process of Development of Beibu Gulf Economic Zone
北部湾经济区发展过程中的地方保护主义浅析
5)  Pan-Beibu Gulf Economic Zone
泛北部湾经济区
1.
Research on Mutual Promotive Development between Pan-Beibu Gulf Economic Zone and Pan-Pearl River Delta Economic Zone;
泛北部湾经济区与泛珠三角经济区互促发展研究
2.
On Trade in Higher Educational Services in the Perspective of International Trade——Taking Pan-Beibu Gulf Economic Zone for Example;
国际贸易视野中的高等教育服务贸易研究——以泛北部湾经济区为例
6)  JiBei Economic Technology Development Zone
济北经济技术开发区
补充资料: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()中.

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