虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

Name

  • 数据库后台管理工具

    数据库后台管理工具,针对MS SQL Server,创建数据库,备份恢复数据库,用户访问统计等功能,运行时需要修改Ydlogin.ini文件里的Server Name 为 SQL Server 服务器名。

    标签: 数据库 后台 管理工具

    上传时间: 2013-12-25

    上传用户:咔乐坞

  • The application you are going to create mimics entering an employee into a database .The user wil be

    The application you are going to create mimics entering an employee into a database .The user wil be required to enter an employee s Name and age

    标签: application The entering employee

    上传时间: 2014-12-07

    上传用户:ouyangtongze

  • 先编写MFC DLL

    先编写MFC DLL,打开VC++6.0 => File => New => Project => MFC AppWizzard(dll),在 Project Name 里输入Calc =>Next => Finish. 好了,现在你打开Workspace的FileView就可以看到已经有Calc.h、Calc.cpp、stdafx.h、stdafx.cpp这4个文件了.

    标签: MFC DLL 编写

    上传时间: 2013-12-21

    上传用户:13681659100

  • 交通灯: 1. 因为本设计是交通灯的控制

    交通灯: 1. 因为本设计是交通灯的控制,所以要先了解实际交通灯的变化规律。假设一个十字路口为东西南北走向。初始状态0为东西红灯,南北红灯。然后转状态1南北绿灯通车,东西红灯。过一段时间转状态2,南北绿灯闪几次转亮黄灯,延时几秒,东西仍然红灯。再转状态3,东西绿灯通车,南北红灯。过一段时间转状态4,东西绿灯闪几次转亮黄灯,延时几秒,南北依然红灯。最后循环至状态1。 2. 双色LED是由一个红色LED管芯和一个绿色管芯封装在一起,公用负端。当红色正端加高电平,绿色正端加低电平,红灯亮;红色正端加低电平,绿色正端加高电平,绿灯亮;两端都加高电平,黄灯亮。 急救车和交通灯: 中断服务程序的关键是:1. 保护进入中断时的状态,并在推出中断之前恢复进入时的状态;2. 必须在中断程序中设定是否允许中断重入,即设置EX0位。 本设计使用了INT0中断,一般中断程序进入时应保护 PSW,ACC以及中断程序使用但非其专用的寄存器。本设计中的INT0程序保护了PSW,ACC,2等三个寄存器并且在退出前恢复了这三个寄存器。另外中断程序中涉及到关键数据的设置时应关中断,及设置时不允许重入。本设计中没有涉及这种情况。 Name:trled1.asm trled2.asm

    标签: 交通灯 控制

    上传时间: 2014-01-05

    上传用户:凌云御清风

  • CBC下写的串口编程

    CBC下写的串口编程,API函数实例 I wish this site had been around when I was trying to figure out how to make serial communications work in Windows95. I, like many programmers, was hit with the double-whammy of having to learn Windows programming and Win95 serial comm programming at the same time. I found both tasks confusing at best. It was particularly frustrating because I had, over the years, written so much stuff (including lots of serial comm software) for the DOS environment and numerous embedded applications. Interrupt driven serial comm, DMA transfer serial comm, TSR serial comm, C, assembler, various processors... you Name it, it had written it. Yet, everything I knew seemed upside-down in the message-driven-callback world of Windows.

    标签: CBC 串口编程

    上传时间: 2014-06-20

    上传用户:cccole0605

  • matlab NumMFs = 2 MF1= in3mf1 : gbellmf ,[3 2 -3 0] MF2= in3mf2 : gbellmf ,[3 2 3 0] [Input4]

    matlab NumMFs = 2 MF1= in3mf1 : gbellmf ,[3 2 -3 0] MF2= in3mf2 : gbellmf ,[3 2 3 0] [Input4] Name = in4 Range = [-3 3] NumMFs = 2 MF1= in4mf1 : gbellmf ,[3 2 -3 0] MF2= in4mf2 : gbellmf ,[3 2 3 0] [Output1] Name = out Range = [-10 10] NumMFs = 16 MF1= outmf1 : linear ,[41.3729301501 10.029755738 3.1622770253 4.2875458985

    标签: gbellmf matlab NumMFs Input4

    上传时间: 2015-04-28

    上传用户:努力努力再努力

  • 一、 实验内容 S语言的编译程序的词法分析部分实现 从左到右扫描每行S语言源程序的符号

    一、 实验内容 S语言的编译程序的词法分析部分实现 从左到右扫描每行S语言源程序的符号,拼成单词,换成内部表示(token) 二、 实验要求 要求实现编译器的以下功能:  组织源程序的输入  按规则拼写单词,并转换成二元形式  删除空格及无用符号(如回车符,字符常数的引号符等)  发现并定位错误  建立单词表、符号表、常数表等文件 三、 实现方法 数据结构 1、 输入 S语言源程序,为文本文件 2、 输出 词法分析程序的运行结果是:产生一个单词序列文件(token文件)和一个常数表、一个符号表文件,并输出错误信息。 (1) token文件结构 token文件用于存放从S语言源程序中扫描出来的一个个单词符号的机内表示,其文件结构如下: typedef struct token { nt label char Name[30] int code int addr }token 说明:  label:单词序号;  Name[30]:单词本身;  code:单词的编辑;  addr:地址,单词本身保留字时值为-1,为标识符成常数时为大于0常数,即该标识符成常数在符号表中的入口地址。

    标签: 语言 实验 编译

    上传时间: 2015-04-29

    上传用户:refent

  • vb内嵌flash应用 Type=Exe Form=frmMain.frm Reference=*G{00020430-0000-0000-C000-000000000046}#2.0#0#..

    vb内嵌flash应用 Type=Exe Form=frmMain.frm Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\..\..\WINDOWS\SYSTEM\stdole2.tlb#OLE Automation Object={D27CDB6B-AE6D-11CF-96B8-444553540000}#1.0#0 SWFLASH.OCX Startup="frmMain" ExeName32="FlashTutorial.exe" Command32="" Name="FlashTutorial" HelpContextID="0" CompatibleMode="0" MajorVer=1 MinorVer=0 RevisionVer=0 AutoIncrementVer=0 ServerSupportFiles=0 VersionCompanyName="funky frog systems" CompilationType=0 OptimizationType=0 FavorPentiumPro(tm)=0 CodeViewDebugInfo=0 NoAliasing=0 BoundsCheck=0 OverflowCheck=0 FlPointCheck=0 FDIVCheck=0 UnroundedFP=0 StartMode=0 Unattended=0 Retained=0 ThreadPerObject=0 MaxNumberOfThreads=1

    标签: 0000 000000000046 Reference 00020430

    上传时间: 2014-11-02

    上传用户:lizhen9880

  • ICTCLAS的JNI调用接口文件: Title:ICTCLAS Caller * <p>Description:do chinese word segmentation.do

    ICTCLAS的JNI调用接口文件: Title:ICTCLAS Caller * <p>Description:do chinese word segmentation.don t change the pakage and CLASS Name, orelse you can t use it. * 请不要改变包名、类名以及native的方法名,否则调用将失效。 * 由于ICTCLAS本身存在很多鲁棒性问题,调用segSentence时,string参数请保证不要过长或带有乱码。调用次数过多(如处理几十G的数据)会有可能造成内存溢出。 * 故基本只能用于较小规模数据(相对几十G来说)。 * 请运行时设置jvm足够的堆栈空间。

    标签: ICTCLAS segmentation Description chinese

    上传时间: 2014-01-25

    上传用户:it男一枚

  • abel Tool Sample Requires: Visual Basic 6 and MapObjects 2.x Data: redlands.shp (Redlands sample

    abel Tool Sample Requires: Visual Basic 6 and MapObjects 2.x Data: redlands.shp (Redlands sample data set from MO 2.x) Interactive Labeling Tool If the check box is checked, then the mouse down location will search for the closest line, and label it with the street Name. If the check box is not checked, then the mouse down will turn into a pan/zoom tool. There is a slider bar to control the search tolerance in screen pixels for the labeling.

    标签: MapObjects Requires Redlands redlands

    上传时间: 2013-12-17

    上传用户:sunjet