1)  FuzzyJ Toolkit
FuzzyJ Toolkit
1.
Improvement of Fuzzy Inference Mechanism in FuzzyJ Toolkit;
FuzzyJ Toolkit中模糊推理机制的改进(英文)
2)  TOOLKIT
TOOLKIT
1.
Based on Pro/E and it's TOOLKIT and VC++6.
阐述了一种用于4轴联动电火花线切割曲面加工的CAD/CAM仿真软件,该软件以Pro/E为开发平台,利用Pro/E自身的二次开发工具TOOLKIT并结合VC++6。
3)  Toolkit
材料资源库
4)  toolkit
工具库的控制
5)  toolkit
工具箱
1.
CORBA based graphic user interface toolkit;
基于CORBA的图形用户界面工具箱
2.
The Design and Implementation of a Hacker Attack Toolkit;
基于Linux的黑客攻击工具箱的设计和实现
3.
Non-Specialist users need a general development method and a toolkit to support the generic data structures suited to tree,network and multi-dimensional data,special visualization techniques and interaction techniques,and well-known generic information tasks.
缺乏统一的开发方法与支撑工具箱,为非专家用户提供对层次、网络、多维等数据类型的统一支持,对各种可视化技术与交互技术的统一支持,以及对信息可视化任务的统一支持针对此问题,提出了一种模型驱动的交互式信息可视化开发方法Daisy。
6)  toolkit
工具包
1.
Design of a New Information Security Toolkit;
一种新的信息安全工具包的设计
2.
The access controller integrated the structure characteristic of the reference monitors which are often used currently,the mechanisms,which are RBAC,Bell-Lapadula,Clark Wilson and ACL,are neatly used in the access controller,ensure confidentiality and integrality of the information in the toolkit.
在CIST中,系统内部信息的安全主要由访问控制器来保证·CIST的访问控制器综合了当前常用的引用监视器的结构特点,灵活地应用了RBAC,ClarkWilson,Bell-Lapadula和ACL等访问控制机制,确保工具包内部信息的机密性和完整性·访问控制器具有高安全强度、接口单一、便于功能扩展和修改的特点
参考词条
补充资料: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()中.

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