说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> VC开发
1)  Visual Cdevelopment
VC开发
2)  Visual C++6.0
VC开发环境
3)  two-step fermentation of Vc
VC二步发酵
4)  ascorbic acid
VC
1.
This article studied the processing parameters of ethyl cellulose microencapsulation of ascorbic acid with thermal phase separating method.
研究了以Vc作为微胶囊化的芯材、以乙基纤维素(ethyl cellulose EC)为壁材、以聚乙烯为添加剂,用油相分离法制备Vc微胶囊的工艺技术参数,确定了影响Vc微胶囊化的主要因素,如微胶囊化温度、搅拌速度、芯材、壁材规格与用量、添加剂的种类及添加量等,并得出微胶囊化最佳工艺参数,即选用乙基含量为49。
2.
The Antioxidization of ascorbic acid,malic acid,tartaric acid,citric acid,p bromomandelic acid,aminoacetic acid and nitrilotriacetic acid for lard was studied.
研究了抗坏血酸 (Vc)、苹果酸、酒石酸、柠檬酸、对溴苦杏仁酸、氨基乙酸、氨三酸等七种有机酸对猪油的抗氧化作用 。
3.
The titratable acid content and ascorbic acid content in jujube increased slowly,then decreased slowl.
结果表明:枣果贮藏过程中,微红果逐渐转红,硬度下降,可滴定酸、Vc含量先上升后逐渐下降,还原糖含量逐渐上升。
5)  Vitamin C
VC
1.
A Research on Measuring Content of Vitamin C in Fruits by using Spectrophotometer;
分光光度法测定水果中Vc含量的研究
2.
Determination of Vitamin C in Vegetables with lodimetry-potentiometer Titration;
碘量电位滴定法测蔬菜中VC含量
3.
Analysis of the Content of Vitamin C in the Dying Process of Red Jujube;
红枣干制过程中Vc含量测定分析
6)  Visual C++
VC
1.
Mixed Programming Between Visual C++++ and MATLAB Via Dynamic Link Libarary;
VC与MATLAB混合编程之DLL实现方法
2.
We firstly analyze the advantages of the Visual C++++ language and SuperMap,then propose the basic principles and general method of hybrid programming with VC and SuperMap.
为利用SuperMap强大的图形图像处理能力,发挥C++语言的高执行效率,开发基于VC环境的组件式地理信息系统提供一点参考。
3.
The paper analyzes interface implementation between VC++ and LabWindows/CVI,In view of conflict problems in their messages mechanism,adopts a method that LabWindows/CVI User Interface messages are insulated,to solve messages conflict problems,and LabWindows/CVI DLL is used effectually in Visual C++++ development environments in actual applications.
分析LabWindows/CVI与VC接口实现机理,针对消息冲突问题,采用了LabWindows/CVI用户界面消息隔离措施,并以具体应用为例,实现了VC开发环境下对LabWindows/CVI的DLL的调用。
补充资料: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()中.

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