Welcome![Sign In][Sign Up]
Location:
Search - cb 1.2

Search list

[SourceCode意天进程保护开发包(进程防杀组件)

Description: 1、开发包用途 该开发包用于软件开发人员使用该组件保护自己软件进程不被杀掉. 2、Demo测试方法 (1)进demo目录双击reg.bat对ProcProtectCtrl.dll组件进行注册 (2)双击VCTest.exe运行demo例程 (3)在"请输入进程ID"编辑框中输入想要保护的进程的ID(ID可参考任务管理器),输入-1为保护自身进程 (4)打开任务管理器,尝试杀掉被保护的进程 3、开发包使用方法(C & C++系) (1)把dll目录里所有文件拷到您软件的运行目录(exe所在目录) (2)把inc目录里的文件拷到软件项目里 (3)在您自己程序头文件里include "ProcProtectCtrl.h" 在cpp文件里 include "ProcProtectCtrl_i.c" (4)建立IProcProtect* m_pProcProtect 成员变量或全局变量 (5)在程序开始处调用如下代码以完成组件创建工作 hResult = ::CoCreateInstance(CLSID_ProcProtect, NULL, CLSCTX_INPROC_SERVER, IID_IProcProtect, (void**) &m_pProcProtect); if(!SUCCEEDED(hResult)) { m_pProcProtect->Register(_T("YitProcProtectCtrlSample")); ::AfxMessageBox(_T("ProcProtect component create failed!")); } (6)调用m_pProcProtect->Protect(m_lPid, TRUE, &dwResult)对进程进行保护m_lPid为进程id (7)程序退出前调用m_pProcProtect->Release();以释放资源 特别注意:必需把ProcProtectCtrl.sys、ProcProtectCtrl.dll放到您exe所在目录里并注册ProcProtectCtrl.dll,具体代码可 参考VCTest 4、软件说明 意天进程保护开发包(进程防杀组件)是意天软件推出的一款进程保护开发包,用该开发包主要可使开发人员保护自己的进程不 被taskmanager等工具杀掉,同时taskmanager等工具也无法获得进程的详细信息.该开发包主要使用驱动采用SSDT拦截技术实现 ,上层接口采用com封装,因此既使您用VB;CB;Delphi等开发工具也可以简单的把该组件变成自己软件的一部分,让您的软件不再 被taskmanager随意杀掉!(注:不可用该开发包来实现恶意软件,否则后果自负!)
Platform: | Size: 950053 | Author: yuzhong25@163.com | Hits:

[Delphi VCLUtilMind.WinHTTP.v3.2.6FS

Description: UtilMind.WinHTTP.v3.2.6.for.Delphi.BCB.Full.Source-SSGWinHTTP是一款基于WinInet的HTTP客户端控件允许你通过HTTP协议POST或者GET数据。通过WinHTTP你可以获取网页、下载文件、取得CGI返回结果,甚至还可以上传文件到CGI。-UtilMind.WinHTTP.v3.2.6.for.Delphi.B CB.Full.Source-A SSGWinHTTP is based on the HT WinInet TP client controls allow you to the HTTP protocol POST or GET data. WinHTTP through the website you can access and download documents to obtain CGI results they can even upload files to CGI.
Platform: | Size: 171008 | Author: 红雨 | Hits:

[SCMarmok013182

Description: 三相步进电机的三相六拍工作方式,正转的绕组通电顺序:A、AB、B、BC、C、CA、A,反转的通电顺序:A、AC、C、CB、B、BA、B、A。 由于步进电机转子有一定的惯性以及所带负载的惯性,故步进电机的工作过程中不能及时的启动和停止,在启动时应慢慢的加速到预定速度,在停止前应逐渐减速到停止,否则,将产生失步现象。 步进电机的控制问题可总结为两点: 1、产生工作方式需要的时序脉冲; 2、控制步进电机的速度,使它始终遵循加速、匀速、减速的规律工作。 -Three-phase three-phase stepper motor six shot work, is to order the winding power: A, AB, B, BC, C, CA, A, reverse the order of power: A, AC, C, CB, B, BA, B, A. As the stepper motor rotor has a certain degree of inertia, as well as brought about by the inertia load, the stepper motor during the course of work should not start and stop time, start to be slowly accelerated to a predetermined speed, the stop should be to slow down gradually to the stop, otherwise, will result in out-of-step phenomenon. Stepper motor control problems can be summarized in two points: one, resulting in the need to work the timing pulse 2, control the speed of stepper motor, so that it always followed acceleration, velocity, deceleration of the law of the work.
Platform: | Size: 35840 | Author: 枫叶 | Hits:

[CSharpphoto

Description: 在ACESS 2000中存储显示图片 // 实例化 oleDbCommand1对象 da = new OleDbDataAdapter() da.SelectCommand = oleDbCommand1 //实例化 OleDbCommandBuilder 对象 否则无法进行数据刷新 cb = new OleDbCommandBuilder(da) // 找到数据集dataSet1 就是找到了一个可以接水的容器 da.Fill(dataSet1, "Image1") // 在运行状态中绑定数据库与数据表 // 这属于一种复杂绑定 //dataGrid1.SetDataBinding(dataSet1, "Account") // 绑定TextBox1的内容与Account.AccountID // 这属于一种简单绑定 textBox1.DataBindings.Add("Text", dataSet1, "Image1.ID") // 绑定TextBox1的内容与Account.Owner // 这属于一种简单绑定 //textBox2.DataBindings.Add("Text", dataSet1, "Account.Owner") // 建立一个dataSet1的管理器 来控制当前数据的位置 bManager = this.BindingContext [dataSet1, "Image1"] -err
Platform: | Size: 1366016 | Author: 000 | Hits:

[File OperateFormatc

Description: 根据Robert B. Sledge的CB改编,主要改动是数据缓冲区的处理。原程序采用读写文件形式,对\r\n字符处理时看成是一个。 而在此程序中将其分开。另外在判断是否回车换行后,原程序使用peek变量保存这个状态,此程序改成将缓冲区字符指针倒退2个字符。 由于时间有限,暂时不对其进行完善了,如程序写作风格和功能等。 -According to Robert B. Sledge of CB adaptation, the major changes to deal with the data buffer. The original form of the procedure used to read and write files on the characters as a handle when. In this procedure will be separated. Also, determine whether the carriage return line feed after the original procedure using peek preserve the state variables, this procedure will change the character buffer pointer back two characters. Since time is limited, do not be perfected, such as procedures, such as writing style and function.
Platform: | Size: 50176 | Author: 宋恩博 | Hits:

[DSP programYCbCrRGB

Description: TMS320c6000系列DSP做图像处理的应用举例,图象颜色模式转换,从RGB到Y Cr Cb-TMS320C6000 series DSP to do image processing applications, for example, image color mode conversion from RGB to Y Cr Cb
Platform: | Size: 48128 | Author: ming | Hits:

[Internet-Networkcom_comprofiler

Description: 最受欢迎的Joomla社区用户管理收费插件 - Commnity Builder 1.2 RC2。 Community Builder suite (CB) extends the Joomla! user management system. Key features: extra fields in profile, enhanced registration workflows, user lists, connection paths between users, admin defined tabs and user profiles, image upload, front-end workflow management, integration with other components, like PMS, Newsletter, Forum, Galleries. Release 1.1 is compatible with all Joomla! 1.0.x (including 1.0.15) and Mambo 4.5.2-4.6.4. New CB version 1.2 RC brings Joomla 1.5 native compatibility (and keeping Joomla 1.0.x and Mambo 4.5.2-4.6.4 native compatibility), multi-criteria user searches, full field controls of core fields, ajax email and username checkers, new lost username/password form and many more features and fixes. Please see announcement on our homepage.-Joomla the most popular community plug-ins User management fees- Commnity Builder 1.2 RC2. Community Builder suite (CB) extends the Joomla! User management system. Key features: extra fields in profile, enhanced registration workflows, user lists, connection paths between users, admin defined tabs and user profiles, image upload, front-end workflow management, integration with other components, like PMS, Newsletter, Forum, Galleries. Release 1.1 is compatible with all Joomla! 1.0.x (including 1.0.15) and Mambo 4.5.2-4.6.4. New CB version 1.2 RC brings Joomla 1.5 native compatibility (and keeping Joomla 1.0.x and Mambo 4.5.2-4.6.4 native compatibility), multi-criteria user searches, full field controls of core fields, ajax email and username checkers, new lost username/password form and many more features and fixes. Please see announcement on our homepage.
Platform: | Size: 1799168 | Author: aigobig | Hits:

[Software EngineeringCB_1.2RC2_STABLE

Description: 最受欢迎的Joomla 社区用户管理收费插件 Community Builder 1.2 RC2 的电子书,仅提供给付费会员 Community Builder suite (CB) extends the Joomla! user management system. Key features: extra fields in profile, enhanced registration workflows, user lists, connection paths between users, admin defined tabs and user profiles, image upload, front-end workflow management, integration with other components, like PMS, Newsletter, Forum, Galleries. Release 1.1 is compatible with all Joomla! 1.0.x (including 1.0.15) and Mambo 4.5.2-4.6.4. New CB version 1.2 RC brings Joomla 1.5 native compatibility (and keeping Joomla 1.0.x and Mambo 4.5.2-4.6.4 native compatibility), multi-criteria user searches, full field controls of core fields, ajax email and username checkers, new lost username/password form and many more features and fixes. Please see announcement on our homepage. -Joomla the most popular community plug-ins User management fees of the Community Builder 1.2 RC2 e-books, is only available to paying members of Community Builder suite (CB) extends the Joomla! User management system. Key features: extra fields in profile, enhanced registration workflows , user lists, connection paths between users, admin defined tabs and user profiles, image upload, front-end workflow management, integration with other components, like PMS, Newsletter, Forum, Galleries. Release 1.1 is compatible with all Joomla! 1.0.x (including 1.0.15) and Mambo 4.5.2-4.6.4. New CB version 1.2 RC brings Joomla 1.5 native compatibility (and keeping Joomla 1.0.x and Mambo 4.5.2-4.6.4 native compatibility), multi-criteria user searches, full field controls of core fields, ajax email and username checkers, new lost username/password form and many more features and fixes. Please see announcement on our homepage.
Platform: | Size: 2075648 | Author: aigobig | Hits:

[AlgorithmTowersOfHanoi

Description: 汉诺塔!!! Simulate the movement of the Towers of Hanoi puzzle Bonus is possible for using animation eg. if n = 2 A→B A→C B→C if n = 3 A→C A→B C→B A→C B→A B→C A→C -Hanoi Tower! ! ! Simulate the movement of the Towers of Hanoi puzzle Bonus is possible for using animation eg. If n = 2 A → BA → CB → C if n = 3 A → CA → BC → BA → CB → AB → CA → C
Platform: | Size: 200704 | Author: only | Hits:

[Button controlCB

Description: 用于指纹识别,SDK 3.0 Pro分为1:1和1:N两个控件,其中接口属性和方法基本相同,而接口方法只有涉及1:N比对部分不同,因此以下综合说明两个控件,不同之处将分别标出和说明。-SDK is a software development kit (SDK) that enables a wide range of applications to use fingerprint recognition. Software developers can integrate biometrics into their software as programming languages, stand-alone applications and web applications as needed- all through a single, intuitive interface.
Platform: | Size: 246784 | Author: twtay1 | Hits:

[Windows DevelopRawDiskCtrl

Description: 意天原始磁盘数据操作开发包(磁盘扇区读写组件)是意天软件推出的一款磁盘数据操作底层开发包,主要用于开发人员操作磁盘数据, 其包括一个com组件和一个磁盘驱动文件,通过该组件VB CB Delphi开发人员可以很方便的读写(按扇区模式或字节模式)底层磁盘数据 ,该组件完全解决VISTA下Win32API无法直接写磁盘数据的问题.该开发包采用驱动直接读写磁盘数据,因此绕过了Win32平台内部权限 检测机制,以使在VISTA下直接写硬盘数据成为现实.(注:不可用该开发包来实现恶意软件,否则后果自负!) -Italian-day operation of the development of the original disk data package (read and write disk sector components) is intended to-day introduced a software disk underlying the development of data manipulation package, mainly for the development of data involved in the operation of the disk, which includes a com component and a disk driver files, through the component VB CB Delphi developers can easily write and read (by sector mode or byte mode) the bottom of the disk data, the component Win32API completely solved VISTA can not be directly under the disk to write data. the development kit using the disk drive directly to read and write data to bypass the internal authority of the Win32 platform detection, so that in the VISTA data directly to write the hard disk to become a reality. (Note: The development kit is not available to achieve malicious software, otherwise the consequences of self- !)
Platform: | Size: 789504 | Author: 597 | Hits:

[Communicationmacd

Description: 利用cb开发工具,通过串口接收数据,和cb中的PerformanceGraph控件,绘制滑动平均曲线macd。 Cb中没有直接提供串口控件,需要通过Import ActiveX control来增加cb中没有的串口控件。可以使用操作系统Windows\system32目录下自带的mscomm32.ocx。 通过http://www.google.com/codesearch 搜索 PerformanceGraph1,可以得到该控件在cb中的用法。 对于串口控件也一样。 如果还有问题,可email:bcd5678@sina.com-The use of development tools cb, through the serial port to receive data, and cb in the PerformanceGraph control, drawing moving average curve macd. Cb does not directly provide serial control, needs to Import ActiveX control to increase the serial port control is not cb. You can use the operating system Windows \ system32 directory that comes with mscomm32.ocx. By http://www.google.com/codesearch search PerformanceGraph1, you can get the control in the cb in the usage. For serial control is the same. If there is problem, email: bcd5678@sina.com
Platform: | Size: 1338368 | Author: 鱼尾 | Hits:

[OtherCalcChlorophyll

Description: 可灵活输入3个数据,根据已有公式CA[i]=13.7*MR[i][2]-5.76*MR[i][1] CB[i]=25.80*MR[i][1]-7.60*MR[i][2];CC[i]=4.695*MR[i][0]-0.268*(CA[i]+CB[i]) 计算得到CA,CB,CC叶绿素-input three random integers, and the program would output CA,CB,CC using the following formula:CA[i]=13.7*MR[i][2]-5.76*MR[i][1] CB[i]=25.80*MR[i][1]-7.60*MR[i][2];CC[i]=4.695*MR[i][0]-0.268*(CA[i]+CB[i])
Platform: | Size: 1065984 | Author: 熊瑛 | Hits:

[OS Developastyle

Description: 很好的代码通用的代码格式化软件(命令行,附教程如何支持 CB 和SourceInsight)-Good common code format software code (the command line, with a tutorial on how to support the CB and SourceInsight)
Platform: | Size: 260096 | Author: 李子轩 | Hits:

[OtherMyMSN

Description: msnsharp,msn机器人源代码,带有结发信息等功能-25811244MyMSN.rar 飞龙 QQ 316118740 人机智能对话文章 http://hi.baidu.com/alalmn/blog/category/ C8 CB BB FA D6 C7 C4 DC B6 D4 BB B0-msnsharp, msn robot source code, send information with functions such as Results-25811244MyMSN.rar intelligent man-machine dialogue dragon QQ 316118740 article http://hi.baidu.com/alalmn/blog/category/ C8 CB BB FA D6 C7 C4 DC B6 D4 BB B0
Platform: | Size: 1444864 | Author: QQ316118740 | Hits:

[Windows DevelopCode

Description: MSN机器人源代码(C#),MSN信息发送部分-简单自动问答等85375532MSNRobotSourceCode.rar 飞龙 QQ 316118740 人机智能对话文章 http://hi.baidu.com/alalmn/blog/category/ C8 CB BB FA D6 C7 C4 DC B6 D4 BB B0-MSN Robot source code (C#), MSN messaging part- a simple quiz 85375532MSNRobotSourceCode.rar automatic machine intelligent dialogue dragon QQ 316118740 article http://hi.baidu.com/alalmn/blog/category/ C8 CB BB FA D6 C7 C4 DC B6 D4 BB B0
Platform: | Size: 1831936 | Author: QQ316118740 | Hits:

[Other1111

Description: MSN机器人源代码,你可以尝试申请多一个账户,专门用来登录做机器人,自己的则用来测算该机器人。机器人登录后,可以点击“show online contact”按钮,会显示在线人员,双击之,便可!75448148myMSN.rar 飞龙 QQ 316118740 人机智能对话文章 http://hi.baidu.com/alalmn/blog/category/ C8 CB BB FA D6 C7 C4 DC B6 D4 BB B0 -MSN robot source code, you can try to apply for a account, login to make robots designed to, his is used to measure the robot. Robot logged in, you can click " show online contact" button, it will display line staff, double-click the can! 75448148myMSN.rar intelligent man-machine dialogue dragon QQ 316118740 article http://hi.baidu.com/alalmn/blog/category / C8 CB BB FA D6 C7 C4 DC B6 D4 BB B0
Platform: | Size: 1822720 | Author: QQ316118740 | Hits:

[Windows Develop22222

Description: MSN机器人,源代码是C#,含自动IP地址查询、简单自动问答等。  安装和使用:解压,把mymsn.mdf文件附加到MS SQL Server中,打开mymsn.sln,修改dbconnection字符串中的数据库地址、用户名和密码,然后运行便可61549824MyMSN.rar 飞龙 QQ 316118740 人机智能对话文章 http://hi.baidu.com/alalmn/blog/category/ C8 CB BB FA D6 C7 C4 DC B6 D4 BB B0 -MSN robot, the source code is C#, including automatic IP address lookup, automatic simple quiz. Install and use: Unzip to mymsn.mdf attach files to MS SQL Server, open mymsn.sln, modify the string in the database dbconnection address, user name and password, then run can 61549824MyMSN.rar dragon QQ 316118740 machine Intelligent dialogue article http://hi.baidu.com/alalmn/blog/category/ C8 CB BB FA D6 C7 C4 DC B6 D4 BB B0
Platform: | Size: 1821696 | Author: QQ316118740 | Hits:

[Windows Develop3333

Description: MSN机器人开发接口117143167net-sdk-1.5.0.zip 飞龙 QQ 316118740 人机智能对话文章 http://hi.baidu.com/alalmn/blog/category/ C8 CB BB FA D6 C7 C4 DC B6 D4 BB B0 -MSN Robot Development Interface 117143167net-sdk-1.5.0.zip intelligent man-machine dialogue dragon QQ 316118740 article http://hi.baidu.com/alalmn/blog/category/ C8 CB BB FA D6 C7 C4 DC B6 D4 BB B0
Platform: | Size: 183296 | Author: QQ316118740 | Hits:

[.netcb

Description: 中国工商银行支付接口实现代码,版本为1.0.0.14,实际上大同小异,只是注意修改下版本号即可-Industrial and Commercial Bank of China payment interface implementation code, version 1.0.0.14, in fact more or less the same, just pay attention to modify the version number
Platform: | Size: 31744 | Author: yun | Hits:
« 12 3 4 5 6 7 8 »

CodeBus www.codebus.net