说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 稿源开发
1)  contribution source
稿源开发
2)  Exploiting origins of contributions
开拓稿源
3)  contribution [英][,kɔntrɪ'bju:ʃn]  [美]['kɑntrə'bjuʃən]
稿源
1.
Analysis of contributions for "Adverse Drug Reactions Monitoring Information" of Jiangsu Province in 2006;
江苏省2006年《药品不良反应监测信息》稿源分析
2.
Sustainable development of contributions for sci-tech periodicals;
科技期刊稿源的可持续性经营
3.
Widening contribution sources and improving quality of sci-tech journals;
拓宽稿源渠道 提高期刊质量——《西北农业学报》稿源状况及建设的思考
4)  source of contribution
稿源
1.
This study deals with a statistic analysis on the papers published in the Journal of Inner Mongolia Polytechnic University (Natural Science Edition) from 1994 to 1998,involving the number of contributions and their publication rate,the source of contributions and their classification,content and length,the timeliness of report,the status of authors and the reported proportion of research findings.
其中包括收稿及刊用率,稿源,分类,内容,篇幅,出版时滞,作者情况以及各类基金论文发表情况等。
2.
As the fundamental linkage of editing an academic journal,the source of contribution is the first factor to ensure the quality of the journal.
稿源是学术期刊编辑出版的基础性环节,是保障学术期刊总体质量的第一关。
5)  contribution sources
稿源
1.
As for the current tough situation of in-house publication journals in higher vocational colleges,this paper discusses the embarrassing situations caused by the insufficient contribution sources.
近年来,高职内刊学报办刊举步维艰,其中高职内刊学报稿源不足是其重要表现。
2.
" Matthew effects can be found in every field,including the running of journals in regional colleges,especially distribution of contribution sources and evaluation of core journals.
马太效应对地方高校办刊的影响主要表现在稿源分流、核心期刊的评定等方面。
6)  manuscript [英]['mænjuskrɪpt]  [美]['mænjə'skrɪpt]
稿源
1.
Optimal control of manuscripts for sci-tech periodicals;
科技期刊稿源的优化控制
2.
The paper studies the importance of improving periodical quality by manuscripts source of magazine under market-economic situation.
分析了市场经济条件下培育稿源对提升期刊质量的重要性。
3.
High quality manuscripts role on the foundations for high quality of periodicals.
高质量的稿源是确保期刊高质量的关键性、决定性因素。
补充资料: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()中.

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