|
说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
|
|
您的位置: 首页 -> 词典 -> 伙伴关系开发程序
1) partner development programs
伙伴关系开发程序
2) partner ship development programs
伙伴关系发展程序
3) partnering
[英]['pɑ:tnə] [美]['pɑrtnɚ]
伙伴关系
1.
Partnering Analysis Based on the Transaction Cost Theory in General Contracting Projects;
基于交易费用理论的总承包项目伙伴关系管理的研究
2.
Analysis and Research of Partnering Management Model in Construction Engineering Project;
建设工程项目伙伴关系管理模式分析与研究
3.
Virtual Organization Based Partnering of Construction Projects;
基于虚拟组织的工程项目伙伴关系研究
4) Partnership
[英]['pɑ:tnəʃɪp] [美]['pɑrtnɚ'ʃɪp]
伙伴关系
1.
An Analysis Framework for University Partnership in the United States;
美国大学的伙伴关系述评
2.
On the Process of Building up Agile Supply Chain Partnership Relation;
敏捷供应链中合作伙伴关系的有效构建
3.
Government and higher education institution: authority gamble,partnership and the direction of responsibility;
政府与学府:权威博弈、伙伴关系与责任指向
5) partner relationship
伙伴关系
1.
Game research on partner relationship of manufacturer-supplierin collaboration product innovation;
制造商-供应商协同产品创新伙伴关系博弈研究
2.
Innovation and control in the partner relationship with key customers;
大客户伙伴关系中的创新与控制
3.
The researches of supply chain partner relationship include transaction cost theory,resource theory,game theory and so on.
科学技术的飞速发展、经济的全球化以及竞争的日益激烈,使得企业要想在市场上取得成功,就必须和供应商、客户建立紧密的伙伴关系,通过整体协作增强各节点企业的竞争力。
6) partnerships
[英]['pɑ:tnə,ʃip] [美]['pɑrtnɚ,ʃɪp]
伙伴关系
1.
After the Cold War the Asia and Pacific Leading Powers China,the USA,Russia and Japan established partnerships of various types one after another in order to hold a favorable position in the multpolar structure of the future world.
冷战后亚太中美俄日四大国为了在未来世界多极格局中取得有利位置 ,纷纷建立各种形式的伙伴关系。
补充资料: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()中.
说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条
|