说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 培训与开发项目
1)  training and development
培训与开发
1.
Case Study on Training and Development in TLT Company;
TLT公司员工培训与开发案例研究
2.
Study of Human Resource Training and Development;
人力资源培训与开发研究
2)  training project
培训项目
1.
Qualified trainers and an appropriate number of trainees in each course are keysto making good use of participatory methodology in training project.
在培训项目中正确运用参与式方法的关键是选用合格的培训师和适度规模的学员,加强训前评估、训中监控和训后应用的反馈,才能达到预期的培训效果。
2.
At present, the business seminar training projects to the transformation, transforming effect on the impact of the key factors of lack of lead into the design of the lack of workable model.
当前,企业研讨培训项目成果转化时,对影响转化效果的关键因素分析不足,导致设计的转化模型缺乏可操作性。
3.
In many enterprises, it is usually ignored to take the consideration of the analysis of employee training demand, the reliability of training projects design and Implementation, the training effect appraisal, and the effect transformation.
但是,很多企业在培训过程中忽视员工培训的需求分析、培训项目设计与实施的科学性、培训效果的评估及培训后效果的转化。
3)  training item
培训项目
1.
We can evaluate teaching quality in three aspects, such as student training effect, training item and training institution.
教学质量评估是干部教育培训管理的一个重要环节,可以从学员培训效果、培训项目和培训机构三个层面来进行。
4)  R&D Project
研究与开发项目
1.
Analysis and Evaluation on the Process of R&D Project;
研究与开发项目的周期分析与评价
5)  Project Exploiting and Investing
项目开发与投资
1.
The Danger Management in a Project Exploiting and Investing;
项目开发与投资的风险管理
6)  training and development
培训开发
1.
Digital management and MDC s human resources training and development;
数字化管理与MDC人力资源培训开发
2.
Based on the theory of human-as-the-principle under the conditions of knowledge-based economy, this paper proposes that training and development is the ultimate goal of performance evaluation.
从知识经济条件下以人为本的理念出发,提出了只有培训开发才是绩效考核最终目的的观点。
补充资料: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()中.

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