Welcome![Sign In][Sign Up]
Location:
Search - reg

Search list

[GUI DevelopVC6LineNumberAddin

Description: VC6中显示行号的插件, 1. 如果你的VC 安装在C 盘,请拷贝文件VC6LineNumberAddin.dll 到如下目录: C:\Program Files\Microsoft Visual Studio\Common\MSDev98\AddIns 2. 注册 双击VC6LineNumberAddin.reg 进行注册。 3. 启用 打开vc6,菜单栏:Tools -> customize -> Add-ins and Macro Files 选中VC6LineNumber Developer Studio Add-in -The VC6 display the line number of plug-in, if your VC is installed in the C drive, please copy files VC6LineNumberAddin.dll to the following directory: C: \ Program Files \ Microsoft Visual Studio \ Common \ MSDev98 \ AddIns 2. Registered double-click VC6LineNumberAddin. reg register. Enable open vc6, menu bar: Tools-> customize-> Add-ins and Macro Files selected VC6LineNumber Developer Studio Add-in
Platform: | Size: 163840 | Author: 林夕 | Hits:

[OtherREG

Description: sygma arm平台系统常用的二极管手册。-sygma arm platform system used diode manual.
Platform: | Size: 1130496 | Author: 王争 | Hits:

[e-languageRASkey-reg

Description: RAS加密验证-注册!对于写软件注册加密的有些许帮助、新手源码-RAS encrypted authentication- Register! Slightly to help write software registration encrypted novice Source
Platform: | Size: 2048 | Author: 夏飞飞 | Hits:

[Browser Clientreg

Description: php网页注册程序,数据库验证,实现账号注册,找回,修改密码等-php web registration process, database validation, account registration, retrieve, modify your password
Platform: | Size: 115712 | Author: | Hits:

[SCMC12H04_ClassMaterial

Description: 基于dsPIC® DSC的数字电源转换:并网太阳能微型逆变器-Grid-connected solar micro-inverter based dsPICDSC digital power conversion:
Platform: | Size: 1382400 | Author: mikeming | Hits:

[Software Engineeringosmf_dev_guide

Description: Open Source Media Framework (OSMF) is a pure ActionScript® 3.0 framework that gives developers complete flexibility and control in creating their own rich media experiences. OSMF is a free collection of open-source components that simplify media player creation for the Adobe® Flash® Platform-Open Source Media Framework (OSMF) is a pure ActionScript® 3.0 framework that gives developers complete flexibility and control in creating their own rich media experiences. OSMF is a free collection of open-source components that simplify media player creation for the Adobe® Flash® Platform
Platform: | Size: 643072 | Author: ssccmmshs | Hits:

[Other systemsparking

Description: “停车场管理系统”执行说明: 1、 光盘目录vc6.0\chapter9\bin\ParkSys.exe为本系统的可执行文件。VicBmp.dll和VICVOICE.DLL是系统依赖的两个动态链接库。 2、 光盘目录vc6.0\chapter9\conf\VicAly.reg是本系统的配置文件。在运行之前要把注入到注册表中。 3、 光盘目录vc6.0\chapter9\db\VicAly.SQL是本系统数据库定义脚本,此脚本是专门针对SQL Server的。由于系统使用的是ODBC连接的SQL Server,所以要配置ODBC数据源,具体步骤参看本章的重点代码部分的数据库配置。 4、 光盘目录vc6.0\chapter9\src\ParkSys\ 为本系统的VC源程序。 5、 光盘目录vc6.0\chapter9\src\VicVoice\为本系统的依赖的动态库VICVOICE.DLL的源代码。 -Parking management system implementation Description: 1, CD-ROM directory vc6.0 \ chapter9 \ bin \ ParkSys.exe oriented system executable file. VicBmp.dll, and VICVOICE.DLL is the system relies on two dynamic link library. 2, CD-ROM directory vc6.0 \ chapter9 \ conf \ VicAly.reg the system configuration file. Before running should be injected into the registry. 3, the CD-ROM directory vc6.0 the \ chapter9 \ db \ VicAly.SQL the system database definition script, this script is designed for SQL Server. Because the system uses the ODBC connection SQL Server ODBC data source you want to configure specific steps to see the part of the focus of this chapter code database configuration. 4, the CD-ROM directory vc6.0 \ chapter9 \ src \ ParkSys \ oriented system VC source. 5, the CD-ROM directory vc6.0 \ chapter9 \ src \ VicVoice \ oriented system dependence dynamic library VICVOICE.DLL of source code.
Platform: | Size: 8209408 | Author: yaya | Hits:

[OtherVB-API-sample-of-150-cases

Description: VB API范例 150例 这是由VB6.0开发,在运行源程序之前,请先进行以下操作: 1、打开Reg目录,执行"快捷注册.vbp",将相应dll、ocx等构件注册。 2、打开Setup目录,执行"向系统菜单注册.vbp",在Windows的开始菜单上增加程序条目。-VB API sample of 150 cases
Platform: | Size: 2451456 | Author: dacheng | Hits:

[Software Engineeringcode-led

Description: code seven leg module bcd_tang (clock, rst, s1, led) input clock, s1, rst output [6:0] led reg [6:0] led reg [3:0] bcd wire [3:0] bcd_next always @(posedge clock or posedge rst) begin if (rst == 1 b1) begin bcd <= 4 b0 end else if (s1 == 1 b1) begin bcd <= bcd_next // update new value end else begin bcd <= bcd // keep old value end end assign bcd_next = (bcd == 4 b1001) ? 4 b0 : bcd + 1 b1 // bcd : current stage // bcd_next : next stage always @(posedge clock) begin case(bcd) 4 b0000: led <= 7 b1111110 4 b0001: led <= 7 b0110000 4 b0010: led <= 7 b1101101 4 b0011: led <= 7 b1111001 4 b0100: led <= 7 b0110011 4 b0101: led <= 7 b1011011 4 b0110: led <= 7 b1011111 4 b0111: led <= 7 b1110000 4 b1000: led <= 7 b1111111 4 b1001: led <= 7 b1110011 default: led <= 7 b1111111 endcase end endmodule-code seven leg module bcd_tang (clock, rst, s1, led) input clock, s1, rst output [6:0] led reg [6:0] led reg [3:0] bcd wire [3:0] bcd_next always @(posedge clock or posedge rst) begin if (rst == 1 b1) begin bcd <= 4 b0 end else if (s1 == 1 b1) begin bcd <= bcd_next // update new value end else begin bcd <= bcd // keep old value end end assign bcd_next = (bcd == 4 b1001) ? 4 b0 : bcd + 1 b1 // bcd : current stage // bcd_next : next stage always @(posedge clock) begin case(bcd) 4 b0000: led <= 7 b1111110 4 b0001: led <= 7 b0110000 4 b0010: led <= 7 b1101101 4 b0011: led <= 7 b1111001 4 b0100: led <= 7 b0110011 4 b0101: led <= 7 b1011011 4 b0110: led <= 7 b1011111 4 b0111: led <= 7 b1110000 4 b1000: led <= 7 b1111111 4 b1001: led <= 7 b1110011 default: led <= 7 b1111111 endcase end endmodule
Platform: | Size: 194560 | Author: he | Hits:

[Crack Hackgenerate-reg-code

Description: 利用硬盘序列号生成注册码,包括生成注册码以及得到注册码,MFC界面-Use hard disk serial number generation registration code
Platform: | Size: 3978240 | Author: chixue | Hits:

[Otherreg

Description: 正则表达式的“鼻祖”或许可一直追溯到科学家对人类神经系统工作原理的早期研究。美国新泽西州的Warren McCulloch和出生在美国底特律的Walter Pitts这两位神经生理方面的科学家,研究出了一种用数学方式来描述神经网络的新方法,他们创新地将神经系统中的神经元描述成了小而简单的自动控制元,从而作出了一项伟大的工作革新。-The regular expression " originator" or permission has been traced back to the early research scientists on the human nervous system works. Warren McCulloch was born in New Jersey, USA Walter Pitts in Detroit two neurophysiological scientists developed a new method, a mathematical way to describe the neural network innovation description of the neurons in the nervous system become a small, simple automatic control, which made a great job of innovation.
Platform: | Size: 35840 | Author: niziboy | Hits:

[Otherwindows_register_format

Description: 本人做.reg文件解析时,整理出来的文档。 分享给有需要的人。-I do reg file is parsed, sorted out the document. Share to needy people.
Platform: | Size: 10240 | Author: 张工 | Hits:

[SCMADC.mcp_0_backup

Description: Freescale芯片9S08DZ32的ADC源代码 ....................\iocomp_activex_ keys_300.reg ....................\iPlotLibrary.ocx ....................\iPlotLibrary.tlb ....................\IPLOTL~1.oca ....................\iProfessionalLibrary.ocx ....................\iProfessionalLibrary.tlb ....................\IPROFE~1.oca ....................\isAnalogLibrary.ocx ....................\isAnalogLibrary.tlb ....................\ISANAL~1.oca ....................\isDigitalLibrary.ocx ....................\isDigitalLibrary.tlb ....................\ISDIGI~1.oca ....................\iStripChartXControl.ocx ....................\iStripChartXControl.tlb ....................\ISTRIP~1.oca -The Freescale chip 9S08DZ32 ADC Source Code .................... \ iocomp_activex_ keys_300.reg .................. .. \ iPlotLibrary.ocx .................... \ iPlotLibrary.tlb .................... \ IPLOTL ~ 1.oca .................... \ iProfessionalLibrary.ocx .................... \ iProfessionalLibrary.tlb .................... \ IPROFE ~ 1.oca .................... \ isAnalogLibrary.ocx .................... \ isAnalogLibrary.tlb .................... \ ISANAL ~ 1.oca .................... \ isDigitalLibrary.ocx .................... \ isDigitalLibrary . tlb .................... \ ISDIGI ~ 1.oca .................... \ iStripChartXControl . ocx .................... \ iStripChartXControl.tlb .................... \ ISTRIP ~ 1 . oca
Platform: | Size: 50176 | Author: jemely | Hits:

[JSP/Javareg

Description: 分享型网站,可以分享自己喜欢的宝贝,在这里可以找到你想要找的理想东西-Sharing Web site, you can share your favorite baby, where you can find the things you want to find the ideal
Platform: | Size: 12686336 | Author: zhuyuan | Hits:

[OtherAdvanced-Bash-Scripting-Guide_6.3

Description: Unix shell 高级编程,英文版。 本教程不承担任何以前的脚本或编程知识,但进展迅速走向一个中级/高级教学水平。 。所有的,而偷渡在UNIX® 智慧的小金块和 绝杀。它作为一本教科书,一本手册自学和参考的知识来源和外壳。 脚本技术的练习和大量注释的例子主动邀请读者参与, 只有这样,才能真正学习脚本编写脚本。-This tutorial assumes no previous knowledge of scripting or programming, but progresses rapidly toward an intermediate/advanced level of instruction . . . all the while sneaking in little nuggets of UNIX® wisdom and lore. It serves as a textbook, a manual for self-study, and a reference and source of knowledge on shell scripting techniques. The exercises and heavily-commented examples invite active reader participation, under the premise that the only way to really learn scripting is to write scripts
Platform: | Size: 1762304 | Author: 杨云 | Hits:

[OS programSearchReg

Description: 一个遍历注册表的demo 程序源码 这是在wince下的程序,windows也差不多-a demo app to find all reg key with source code
Platform: | Size: 4254720 | Author: 美玲 | Hits:

[Software EngineeringReg-Calculator-v1.67

Description: Hittite 频综HMC830LP6GE的寄存器配置工具,包括寄存器写入顺序和算法都在里面,只要输入蓝色部分的期望数据, 就能自动生成所有寄存器的值以及顺序-The register configuration tools, including Hittite frequency synthesizer HMC830LP6GE register write sequence and algorithms are in there, as long as the input to the blue part of the expected data, will be able to automatically generate the values ​ ​ of all registers, and order
Platform: | Size: 367616 | Author: KKK | Hits:

[Otherds18B20

Description: 一、DS18B20 的主要特性 (1)适应电压范围更宽,电压范围:3.0~5.5V,在寄生电源方式下可由数据线供电 (2)独特的单线接口方式,DS18B20 在与微处理器连接时仅需要一条口线即可实现微处理器与 DS18B20 的双向通讯 (3)DS18B20 支持多点组网功能,多个 DS18B20 可以并联在唯一的三线上,实现组网多点测温-FEATURES  Unique 1-Wire ® interface requires only one port pin for communication  Provides unique 64-bit serial number to battery packs  Eliminates thermistors by sensing battery temperature on-chip  On-board A/D converter allows monitoring of battery voltage for end-of-charge and end-of-discharge determination  On-board integrated current accumulator facilitates fuel gauging  Elapsed time meter in binary format
Platform: | Size: 1085440 | Author: lei金 | Hits:

[Industry researchResearch-Study-of-Hand-Gesture-Recognition-Techno

Description: This paper deals with gesture reg technique. 2012 IEEE . Very good.
Platform: | Size: 200704 | Author: ibbu | Hits:

[WEB CodeFonYin

Description: FonYin小论坛留言系统采用ASP+ACC+XML+JS制作,实现帖子全部自动生成html静态页面,对SEO更友好。 FonYin小论坛留言系统 20110930 更新内容: 重新设计了漂亮的清爽绿色模板 增加了允许发帖的设置,仿照开放注册的reg.asp中 精简了部分代码,修复了发帖时的一些bug 增加了底部和头部的统一调用文件,方便修改。-FonYin small-Forum Message System to adopt ASP+ACC+XML+JS production to achieve Posts All automatically generate static html page SEO friendly. 20,110,930 updated content FonYin Forum Message System: redesign beautiful fresh green template posting settings allow modeled the open registration reg.asp streamlined part of the code, fix some bug when posting an increase of at the bottom and the head of the unified call file, easy to modify.
Platform: | Size: 813056 | Author: DSFGDG08 | Hits:
« 1 2 ... 45 46 47 48 49 50»

CodeBus www.codebus.net