说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 人才开发战略
1)  talented person development strategy
人才开发战略
2)  Strategy of State Talents Development
国家人才开发战略
1.
Employability:A New Vision of The Strategy of State Talents Development
可雇佣性:国家人才开发战略新视野
3)  talent development strategy
人才发展战略
1.
The implementation of talent development strategy is to put all kinds of talents into the undertakings of our country,through developing talents, building talents team, appointing and regulating talents.
实施人才发展战略就是要通过人才的开发、人才队伍的建设、人才的任用与管理,把各类人才集聚到党和国家的各项事业中来。
4)  human resource strategy
人才战略
1.
The paper introduces the experience of Chenming Group in practising human resource strategy and carrying out stuff training so as to promote enterprise development.
介绍了晨鸣集团实施人才战略,开展员工培训,促进企业发展的经验。
2.
How to implement human resource strategy founds and counts in the realization of exploitation, in the west.
实施人才战略是实现西部大开发战略目标的前提和基础 ,是战略中的战略。
5)  talent strategy
人才战略
1.
Government s role posititioning in rvevitaling Northeast old industrial base talent strategy;
东北老工业基地人才战略中政府的角色定位
2.
A study of talent strategy in Heilongjiang province;
黑龙江省人才战略问题研究
3.
On the talent strategy and the sustainable development of the enterprises;
论人才战略与企业的可持续发展
6)  talents strategy
人才战略
1.
The talents strategy of Foshan city and the cultivation of talents in our institute at the turn of the century;
世纪之交的佛山人才战略与我校人才培养
2.
This system, which has its corresponding running regularity and operating programme, serves and submit to the thought of the talents strategy of the president of the hospital.
而这一系统服务服从于院长的人才战略思想。
3.
In the light of Shanxi s present situation of being in want of the talents, lower quality of existing talents, and that the economic and sci- tech development is still in middle and lower reaches of the whole country, this paper puts forward a talents strategy suitable to the provincial conditions of Shanxi.
针对山西省人才匮乏、现有人才素质偏低、经济科技发展仍处在全国中下游的现状,提出了适合山西省省情的人才战略。
补充资料: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()中.

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