说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 外埠开发商
1)  Developers
外埠开发商
1.
Analysis of the Attractiveness of Changchun s Real Estate Market to the Domestic Developers;
长春房地产市场对外埠开发商的投资吸引力分析
2)  untreaty port
自开商埠
1.
The untreaty ports, after a period of development in late Qing Dynasty and early Republic China, founded a number of modern enterprises while promoting trade.
自开商埠经过清末民初的短暂发展,在进行商业贸易的同时,创建了一批近代工矿企业,武昌、济南、哈尔滨等主要自开商埠甚至跻身同期中国最重要的工业城市之列,对中国近代工业发展作出了一定的贡献。
3)  non-treaty ports
自开商埠
1.
Zhang Jian activitely favored non-treaty ports,because he awoke to the international situation,wanted to uphold economic rights and prevented the covetousness.
鉴于对国际形势的清醒认识,同时为了维护利权、杜绝觊觎以及对商埠作用的重视,张謇积极支持自开商埠。
2.
In 1898 after the first establishment of non-treaty ports, a kind of port different from treaty-port in modern China, the Qing government orders to "develop commercial ports", but few positively respond except Nanning, Guangxi.
自开商埠是近代中国区别于条约口岸的口岸类型。
4)  port opening
开埠通商
5)  Ports opened according to agreement
约开商埠
6)  out bound
开往外埠
补充资料: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()中.

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