Welcome![Sign In][Sign Up]
Location:
Search - 注册,开发

Search list

[WEB Code注册模块

Description: 一个用户注册模块,可以进行用户注册,登陆后可以进行用户的修改功能,采用jsp+javabean的开发模式-a registered user module, users can be registered, after landing the user can change the functional, using jsp javabean development model
Platform: | Size: 9802 | Author: 赵伟 | Hits:

[WinSock-NDISVB注册码代码示例

Description: 软件限时使用与注册功能的实现 众所周知,一些共享软件往往提供给使用者的是一个功能不受限制的限时使用版,在试用期内使用者可以无限制的使用软件的全部功能(只是可能会出现提示使用者注册的窗口),试用期一过部分(或全部)功能失效,要想继续使用只能向作者索取注册码(或注册文件)完成对软件的合法注册,注册后的软件将解除一切使用限制。如果您也开发出一个有价值的作品,是否也希望为自己的软件增加一个这样的功能呢?这里笔者就提供一个实现软件限时的完整代码。   软件启动后会首先运行本代码并从注册表HKEY_LOCAL_MACHINE\Software\MyProgram子键下的三个键值MyProgram1-3中读取键值数据。其中MyProgram2的值是软件首次运行日期,MyProgram3的值是软件当前运行时的日期,MyProgram1的值是软件的使用标志:如果软件在试用期内则其值为字符串sign1;如果软件试用期满则其值为字符串sign2,如果软件已经注册则其值为字符串sign3。全局变量ZHUCE依据读取的MyProgram1键值而赋值:ZHUCE=-1说明试用期满,ZHUCE=-2说明软件已注册,ZHUCE=其它值为剩余天数,您的主程序代码要依据此全局变量ZHUCE的值设计相应的交互响应。   为方便您将代码嵌入现存的程序代码中,本示例将全部代码写入一个模块.bas中(模块名随意,也可添加到已有模块中)。注意,代码中的Private Sub Main()过程为整个程序的启动入口,您需要在“工程属性”对话框中将“启动对象”设置为“Sub Main()”。 '通用模块 Global ZHUCE As Integer '说明:全局变量ZHUCE=-1试用期满,ZHUCE=-2已注册,ZHUCE=其它值为剩余天数 Declare Function RegOpenKeyEx Lib "advapi32" Alias "RegOpenKeyExA" (ByVal hKey As Long, ByVal lpSubKey As String, ByVal ulOptions As Long, ByVal samDesired As Long, ByRef phkResult As Long) As Long Declare Function RegQueryValueEx Lib "advapi32" Alias "RegQueryValueExA" (ByVal hKey As Long, ByVal lpValueName As String, ByVal lpReserved As Long, ByRef lpType As Long, ByVal lpData As String, ByRef lpcbData As Long) As Long Declare Function RegCloseKey Lib "advapi32" (ByVal hKey As Long) As Long Private Sub Main()'程序总入口 Dim a As Long, rc(3) As Long, hKey As Long, KeyValType As Long, KeyValSize(3) As Long Dim c As String, h As String, tmpVal(3) As String Dim datetime As Integer datetime = 30'试用期天数 ZHUCE = -1 On Error GoTo cuowu '以下从注册表HKEY_LOCAL_MACHINE\Software\MyProgram的三个值中取出相关数据字串tmpVal(3) a = RegOpenKeyEx(&H80000002, "Software\MyProgram", 0, 131135, hKey) ' 打开注册表关键字 For a = 1 To 3: tmpVal(a) = String$(1024, 0): KeyValSize(a) = 1024: Next rc(1) = RegQueryValueEx(hKey, "MyProgram3", 0, KeyValType, tmpVal(1), KeyValSize(1)) rc(2) = RegQueryValueEx(hKey, "MyProgram2", 0, KeyValType, tmpVal(2), KeyValSize(2)) rc(3) = RegQueryValueEx(hKey, "MyProgram1", 0, KeyValType, tmpVal(3), KeyValSize(3)) For a = 1 To 3 If (Asc(Mid(tmpVal(a), KeyValSize(a), 1)) = 0) Then tmpVal(a) = Left(tmpVal(a), KeyValSize(a) - 1) Else tmpVal(a) = Left(tmpVal(a), KeyValSize(a)) End If Next a = RegCloseKey(hKey) '关闭注册表 '使用期限判断 If tmpVal(3) = "sign3" Then ZHUCE = -2: Exit Sub '查找到已注册标志sign3 If Len(tmpVal(1)) = 1023 And Len(tmpVal(2)) = 1023 And Len(tmpVal(3)) = 1023 Then '首次使用,将当前日期分别写入tmpVal(1)和tmpVal(2)中,在tmpVal(3)中写入准许运行标志sign1 CreateObject("WScript.Shell").regWrite "HKEY_LOCAL_MACHINE\Software\MyProgram\MyProgram3", Date$, "REG_SZ" CreateObject("WScript.Shell").regWrite "HKEY_LOCAL_MACHINE\Software\MyProgram\MyProgram2", Date$, "REG_SZ" CreateObject("WScript.Shell").regWrite "HKEY_LOCAL_MACHINE\Software\MyProgram\MyProgram1", "sign1", "REG_SZ" ZHUCE = datetime MsgBox "试用期剩余" & Trim(datetime) & "天" Else If tmpVal(3) = "sign2" Then '查找到永久中止标志sign2中止使用 ZHUCE = -1 Exit Sub MsgBox "试用期已满,请您注册!" End If If Date datetime Then '使用期超过datetime天中止使用 '写入tmpVal(3)中止使用字串sign2 CreateObject("WScript.Shell").regWrite "HKEY_LOCAL_MACHINE\Software\MyProgram\MyProgram1", "sign2", "REG_SZ" ZHUCE = -1 MsgBox "试用期已满,请您注册!" Else '写入当前日期于tmpVal(2)中 CreateObject("WScript.Shell").regWrite "HKEY_LOCAL_MACHINE\Software\MyProgram\MyProgram2", Date$, "REG_SZ" ZHUCE = datetime - (DateValue(Date) - DateValue(tmpVal(1))) MsgBox "试用期剩余" & Trim(datetime) & "天" End If End If End If cuowu: End Sub   从安全保密角度出发,当您应用上述代码时紫色部分应该根据您个人的保密设想进行必要的修改(当然您也可以不修改而直接应用):①示例中的代码把软件的注册与运行信息保存在HKEY_LOCAL_MACHINE\Software\MyProgram子键下的MyProgram1-3三个键值内,请根据您个人的保密原则修改为您所需要的子键名,以隐蔽为原则!②MyProgram1键值中的数据(字符串sign1或sign2或sign3分别对应着试用/期满/注册)应根据您个人的保密设想修改成需要的字符串,也以隐蔽为原则!   主程序中当用户输入正确的注册码(注册码当然是您随意愿而设)后,请执行语句: CreateObject("WScript.Shell").regWrite "HKEY_LOCAL_MACHINE\Software\MyProgram\MyProgram1", "sign2", "REG_SZ" 完成软件注册。(该行代码中的Software\MyProgram\MyProgram1和sign2请与上述代码保持一致!)
Platform: | Size: 18051 | Author: dianfeng | Hits:

[SourceCode驱动开发

Description: 驱动开发环境搭建vs6.0+ddk 2600+windows xp+Driver Studio 3.2 2010-07-07 09:35 驱动开发环境之Windows XP DDK2600,VC++ 6.0, Driver Studio 3.2 神秘的驱动开发,神秘的WINDOWS内核,是什么把这些搞得这么神秘呢? 搭Windows驱动开发平台. 要安装的东西都有这些:在Windows XP的基础上,先装上VC++6.0,再装DDK2600(也就是DDK的XP版),最后装 Driver Studio 3.2。 1.首先装VC++ 6.0, 要装VC++6.0那是因为这个IDE式的环境你已经很熟悉,编译和连接的时候不要用各种命令行的命令,只要鼠标点点,就可以(当然啦,一些参数还是要填的)。具体怎么装我就不介绍了。 2.安装XP系统的DDK, DDK全称是叫Driver Development Kit,它提供4种驱动程序的编译环境,我们这种初学者一般是选Win XP Checked Build Enviorment。 ftp://202.113.29.4/ISO/M$/WinDDK/winxp_ddk.rar 这个是下载地址,我写这篇文章的时候这个链接还是通的,不知你看的时候通不通了,如果不通你可以联系我,我可以发给你。 安装的时候就没什么特别要注意的地方,唯一要记得的是记住要完整安装,把那些什么Samples全装上,对于我们这些初学者会很有用的。 3.安装Driver Studio, DriverStudio 是一套用来简化微软Windows 平台下设备驱动程序的开发,调试和测试的工具包。 对于学过Windows 编程的人我可以打个形象的比喻: DriverStudio中的DriverWorks,本质是“DDK类库”,使用C++类库封装的方法简化了NT Driver或者WDM驱动程序的开发,使用DriverWorks代替DDK开发,类似于使用MFC代替SDK开发Windows应用程序。 http://download2.77169.com/soft/Source/debug/200801/20071229SoftICExlDS3.2.1.zip 这个是下载地址。这个需要序列号和注册文件: http://www.4x4y.com/10257_CrackDown_Compuware.DriverStudio.v3.2.iNTERNAL.html 这个是序列号生成器和注册文件打包下载的地址。 2.安装和配置   软件的安装顺序:Windows XP --> VC6.0 --> WinXP_DDK -> DriverStudio3.2,如果顺序装错了,那么把DriverStudio3.2删除再重装就OK了。从网上找到库文件ntstrsafe.lib+csq.lib.rar,把解压出来的两个库文件拷贝到WinXP_DDK的安装目录下的库目录中(我的是C:WINDDK2600libwxpi386)。启动vc6,然后进行简单的配置:菜单DriverStudio菜单下的DDK Build Settings,在弹出的对话框中选择已经安装的DDK目录(比如我的是C:WINDDK2600),在Windows DDK compiler Options中选择"Enable only for Driver Studio"。 VC6.0-->Tools-->Options,点击"Directories"选项卡: 1)"“Show directories for:"下选择Include files,然后检查有没有包含ddk的头文件目录(我的是C:WINDDK2600incwxp),如果没有则加上; 2)"“Show directories for:"下选择Library files,然后检查有没有包含ddk的库文件目录(我的是C:WINDDK2600libwxpi386),如果没有则加上;    注意:安装DDK时一定要把例子安装(建议你安装全部的模块),否则编译vdwlibs.dsw时会报如下的错: vdw_wdm.lib - 1 error(s), 0 warning(s) 然后打开引起错误的文件,发现: #error The file is from the DDK at srcwdmhidinc. Install DDK HID samples to install hidport.h. Or update INCLUDE path for hidport.h in the DDK! 这表明安装WinXP_DDK的时候没有安装实例。 3.编译适合本机使用的库文件   (1).启动VC6.0。开始-->所有程序-->Compuware DriveStudio-->Develop-->DDK Building Settings,确保“DDK Root Directory”下方的内容是ddk的安装目录(比如我的是C:WINDDK2600),然后点击下方的"Luanch Program"正式启动vc6的开发环境。   (2).进入菜单File-->Open Workspace(打开位于DriverStudio3.2安装目录的DriverWorksSourcevdwlibs.dsw)-->进入菜单Build-->batch Build,点击“Select x86"按钮只选中全部的32位库(我的电脑是32位的。注意:对于32位的电脑一定不要选中64位的库,否则后面编译会出错)-->点击按钮"Rebuild AlL”开始编译。   注:如果出现无法打开文件这类的错误,一般都是DDK Build Settings指向不对,或安装顺序有误,或者你在32位机器上选中了64位库。 4.编译一个DriverStudio自带的实例   (1)"启动vc6,点击菜单File-->Open Workspace,打开项目文件C:Program FilesCompuwareDriverStudioDriverWorksExampleswdmhellowdmHelloWdm.dsw,然后编译,如果没有报错,那说明安装和配置成功。但请你别高兴的太早,开发环境安装配置成功只是万里长城的第一步,剩下的你就是要理解驱动模块的架构和具体的代码编写了。 5.使用Driver wizard生成驱动程序框架   (1).在VC6.0的界面下,点击菜单DriverStudio-->Driver wizard,此后系统会一步一步引导你完成设置,最后自动生产的驱动程序框架。   (2).设置好后将生成驱动文件,然后用VC6.0进行编译:进行Build菜单,Rebuild AlL将生成.sys文件,说明驱动模块编译成功!   注:如果出现无法打开ntstrsafe.lib的错误,说明系统缺少这个库文件,参照上面的方法补上这个库文件,或者进入菜单Project-->Settings,鼠标点击左边方框里的最上面一行,然后右边"Project Option"下的ntstrsafe.lib并删除它。 本文是转来的,经过我的验证可以搭建成功。有些软件下载可能需要到其他地方下载。希望各位开发的兄弟姐妹Enjoy yourself.
Platform: | Size: 64512 | Author: cdliqu@163.com | Hits:

[WinSock-NDIS智能注册系统

Description: 一个软件在线的注册系统,简单易懂,可以进行二次开发
Platform: | Size: 214196 | Author: tianwufeng | Hits:

[Windows CE《evc高级编程及其应用开发》源代码-2676

Description: 〈EVC高级编程及其应用开发(Embedded Visual C++嵌入式编程)〉书上的源代码 全书共分13章,分别为WinCE及EVC概述、图形编程、对话框控件、进程、线程、文件和注册表、WinCE基础数据库编程、WinCE扩展数据库编程、通讯编程、UDP和PING编程、TCP编程、DLL编程以及COM编程。读者在具有一定C抖和WinCE知识的基础上,通过本书的学习,可以快速提高WinCE的编程能力和实际开发水平。-<EVC Pregoish(embedded Visual Cg)> book on the source code book is divided into 13 chapters, each of WinCE and EVC outlined, graphics programming, dialog controls, processes, threads, documents and the registry, WinCE based database programming, WinCE expanded database programming, communications programming, and PING programming UDP, TCP programming, programming and COM DLL programming. Readers with certain C jerk and WinCE knowledge, based on the book learning, can rapidly improve WinCE programming capacity and the actual level of development.
Platform: | Size: 7224320 | Author: 林夕书 | Hits:

[WEB CodeUserReg

Description: 注册系统,用户注册,管理员登录,流程简单,试用初学者了解更简单的流程,体会ASP的开发流程。后台试用ACCESS数据库。-Registration System, registered users, administrators logged, is simple and try to better understand the beginners simple process, the experience of ASP development process. Background trial ACCESS database.
Platform: | Size: 20480 | Author: | Hits:

[OtherASP注册VB抽奖程序

Description: 下载的压缩包为asp+vb程序。 霸猪初步于2002年4月份完成。 该抽奖小程序原来用的是sql数据库,但为了方便演示,后来又改用access2000来做后台数据库。 程序目的:如企业想搞抽奖活动,可让读者在网上自行登记,然后到抽奖日,可由工作人员在后台通过软件进行摇奖。 网上自行登记,使用asp+access2000;win2000 iss下测试通过; 后台摇奖:使用VB开发的摇奖软件结合其在网上的access数据库进行摇奖-download compressed for asp vb procedures. Pa pigs in the initial April 2002 completion. The original draw small program using the sql database, but in order to facilitate the presentation, then switch to access2000 do background database. Purpose of procedures : If enterprises wanting to draw activities, which allow the readers to the Internet to register and then to the lucky draw, from the staff in the background through the software watchdog. To register online, use asp access2000; WIN2000 iss under the test; Background Spokesman : VB development of the lottery software in conjunction with its Internet access database draws
Platform: | Size: 63488 | Author: 何云 | Hits:

[OS program系统信息程序开发

Description: 本系统信息程序开发系统用vc编写,可获得系统的cpu信息,修改注册表等。-the System Information program development system with vc preparation, the cpu available information, such as amendments to the registry.
Platform: | Size: 1774592 | Author: | Hits:

[WEB Code注册模块

Description: 一个用户注册模块,可以进行用户注册,登陆后可以进行用户的修改功能,采用jsp+javabean的开发模式-a registered user module, users can be registered, after landing the user can change the functional, using jsp javabean development model
Platform: | Size: 9216 | Author: 赵伟 | Hits:

[Internet-Networkc0082007721

Description: 完整的远程文件管理系统,具有用户注册,用户文件管理,多线程文件传送,窗口管理视屏等功能。是学习网络软件开发和网络软件应用不可多得的超级码代码,总的代码行数已达2万行(20000行),但不得用于商业用途,否则可能会侵权,受到法律追究,谢谢。-Complete remote file management system with user registration, user document management, multi-threaded file transfer, screen window manager functions. Learning Network is a network software development and software application code code super rare, the total number of lines of code has reached 20,000 lines (20000 lines), but shall not be used for commercial purposes, or may be infringement, subject to legal action, thank you.
Platform: | Size: 3141632 | Author: 王华 | Hits:

[OtherMouseWheelSupport4IDE

Description: VB开发下的鼠标中键滚轮功能,通过生成DLL组件注册,就可解决VB开发时鼠标中键无法滚动的功能了。-VB development of the middle mouse button under the scroll wheel function, by generating register DLL component, we can solve the VB in the development of the mouse button when the function can not rolling.
Platform: | Size: 51200 | Author: maco | Hits:

[.netlibrary

Description: 开发环境是asp.net,网上图书馆系统,基本上的功能都有,图书上传,用户注册,用户登陆,用户管理,图书管理等等。打包上传,希望能被当作5个以上上传-Development environment is asp.net, online library system, basically the function, the book From the user registration, user login, user management, library management. From packing, hoping to be treated as more than 5 upload
Platform: | Size: 2339840 | Author: liweirui | Hits:

[Crack HackMySoft

Description: 一种利用硬盘序列号对自开发软件的简单且有效的加密注册方法,适用于发布量不大、尤其不公开发行的专用工程软件。主要目的:为使开发者的软件不被任意复制使用,用户每装一台机器都需要向开发者报知用户号并索取注册号。基本原理:将硬盘序列号做运算后做为用户号,开发者可利用科学型计算器,根据用户报知的用户号和只有自己知道的密钥直接算出注册码返回给用户;用户端不需注册机,开发者也不需解码器,且注册成功后Windows系统会自动保存,以后无需再注册,软件升级也无需重新注册。 所附VC源代码中有实现方法和详细注释。
Platform: | Size: 173056 | Author: renyong0801 | Hits:

[WEB CodeMultiArticle

Description: 多层文章管理系统源码 可以进行注册,注册完成后即可进行文章发布,管理员可以在后台进行文章管理,功能比较简单 该系统采用多层开发,数据库操作采用的是SqlHelper,网页编辑器采用的是DotNetTextBox DB_51aspx下为Sql2005数据库,附加即可 管理员默认登陆地址:adminlogin.aspx,帐号/密码:admin/51aspx 作者:woyaojuzi 友情提示: 一般数据库文件默认在DB_51aspx文件夹下 如果使用VS2005打开本站项目文件,建议打开前务必安装VS2005Sp1-Article management system for multi-source can be registered, registration can be carried out after the completion of article release, administrators can manage in the background article, relatively simple functions of the system of multi-storey development, database operations using SqlHelper, web page editor using is DotNetTextBox DB_51aspx for Sql2005 database, attached to the administrator by default landing Address: adminlogin.aspx, account/password: admin/51aspx Author: woyaojuzi Tips: General database file in the default folder DB_51aspx If you use VS2005 to open site project documents, proposals must be installed before opening VS2005Sp1
Platform: | Size: 3668992 | Author: leon | Hits:

[Otherchinamobile

Description: ssh开发的中国移动登录系统,功能包含:注册,登录,查询。-ssh development of China Mobile sign-on system, features include: registration, login, query.
Platform: | Size: 5642240 | Author: 王大 | Hits:

[source in ebookVCShuJuKuBianCheng

Description: 《Visual C++数据库通用模块开发与系统移植》,侯其锋等著,清华大学出版社。主要包括以下内容:用户登录模块、用户注册模块、数据显示模块、图片显示模块、文本编辑模块、打印和打印预览模块、报表模块、酒店管理系统、学生档案管理系统、宾馆管理系统、驾校管理信息系统、系统移植与升级等。-" Visual C++ Database Module development and system migration," the front waiting for Hou, Tsinghua University Press. Mainly include the following: user login module, the user registration module, data display module, image display module, a text editor module, print and print preview module, report module, the hotel management system, student records management system, hotel management system, management驾校information systems, system migration and upgrading.
Platform: | Size: 50334720 | Author: 小明 | Hits:

[Education soft systemvbonlineexamsystem

Description: vb在线考试系统,开发工具vs2005,数据库SQLserver 2000。 功能:用户注册,修改密码,管理员登录,管理员添加,修改,删除试题,只能做单选题,不能做多选题。-vb online examination system, development tools, vs2005, database SQLserver 2000. Features: User Registration, Change Password, the administrator login, the administrator to add, modify, delete questions,单选题can do, can not do多选题.
Platform: | Size: 196608 | Author: rory | Hits:

[JSP/Javaqinqin_shopping

Description: JAVAWEB开发网上购物车系统 这是一个用JAVA写的网上购物车,其中包括了用户注册,登录等的操作,主要功能就是模拟网上购物车,我自己写的,比较简陋哦,欢迎挑错-JAVAWEB developing an online shopping cart system which is written in JAVA using an online shopping cart, including user registration, login, etc. operations, the main function is to simulate the online shopping cart, I wrote it myself, rather crude oh, please pick the wrong
Platform: | Size: 6857728 | Author: howlong | Hits:

[Windows Mobilewinceredit

Description: windows ce下的一个访问注册表的代码实例,开发环境是 EVC,里面包好了创建,编辑条目的功能-windows ce registry under an access code examples, the development environment is the EVC, which wrapped to create, edit entries in the function
Platform: | Size: 98304 | Author: jimmy | Hits:

[Windows CECRegist

Description: wince下注册表修改代码,开发环境vs2005,可以直接使用-wince under the registry to modify the code, development environment, vs2005, can be used directly
Platform: | Size: 2048 | Author: 陈浩然 | Hits:
« 12 3 4 5 6 7 8 9 10 ... 50 »

CodeBus www.codebus.net