搜索资源列表

  1. 贪吃蛇 源码

    0下载:
  2. 一个贪吃蛇游戏建18个image控件组 名为 sn(0) sn(1) ...sn (17)一个timer1 一个label2 用来记分三个image名为 pg she和st 分别放苹果 蛇身和蛇头的图片所有image的长 宽 都为255一个shape 名为 sh 长宽为4590源码如下 (本人要读书,不太完善)-a game built 18 image control group called sn (0) sn (1) ... sn
  3. 所属分类:其他小程序

    • 发布日期:2024-05-19
    • 文件大小:51200
    • 提供者:李华
  1. sudoku

    0下载:
  2. soduku游戏,大家应该玩过了吧。其中的产生算法我正在想。这是一个解秘的算法。-soduku game, we should have played all right. The selection algorithm which I think is. This is a solution algorithm ST.
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-19
    • 文件大小:1024
    • 提供者:
  1. CYPRESS_A3load

    0下载:
  2. a3load is 8051 firmware that can be used for uploading or downloading to EZ-USB RAM (internal or external). It implements the vendor specific command bRequest = 0xA3. The address to download/upload to/from is spec
  3. 所属分类:单片机(51,AVR,MSP430等)

    • 发布日期:2024-05-19
    • 文件大小:4096
    • 提供者:szoctavia
  1. CacheSetSource

    0下载:
  2. CacheSet is an applet that allows you to manipulate the working-set parameters of the system file cache. Unlike CacheMan, CacheSet runs on all versions of NT and will work without modifications on new Service Pack releas
  3. 所属分类:Windows编程

    • 发布日期:2024-05-19
    • 文件大小:61440
    • 提供者:李杰
  1. pngimage1.56

    1下载:
  2. This PNG Delphi version 1.56 documentation (this version is a major rewrite intended to replace the previous version, 1.2). Improvements in this new version includes: This new version allows the programmer to not
  3. 所属分类:Dephi控件源码

    • 发布日期:2024-05-19
    • 文件大小:291840
    • 提供者:Han Xun
  1. http___www.sipforum

    0下载:
  2. Person-to-person realtime IP communications, like presence, VoIP and video applications, offer clear benefits for the enterprise as time- and money-savers. Unified functionality is now available, where all of the abo
  3. 所属分类:电子书籍

    • 发布日期:2024-05-19
    • 文件大小:670720
    • 提供者:wsh
  1. 9coolSQL

    0下载:
  2. 使用Asp+Access+FSO+Jmail+Servu开发,安装简单,操作简便、无需专业的知识及繁琐的设置,整站完全通过后台WEB界面管理,可运行于所有Windows平台(含虚拟主机),采用完善的绝对物理路径模式,强大的上传及在线编辑功能,自动检测用户上传的文件,管理员可自定义设置过滤非法字符或代码(如asp*语句、*网站信息),支持Serv-U5.0以上所有版本,结合Serv-U,具有实时注册及开通FTP功能,并区别于一般的虚拟
  3. 所属分类:其他行业

    • 发布日期:2024-05-19
    • 文件大小:840704
    • 提供者:赵海洋
  1. DV710_USB_driver_test

    0下载:
  2. 基于ST公司的STR710芯片的DV710开发板。程序演示了一个USB鼠标的应用。 运行时用USB线连接开发板与PC机,PC将自动识别出设备类型并准备驱动。当一切配置完成后(此时L3会亮起),可以用板上的按键来模拟鼠标动作(K1 左,K2 上,K3 下,K4 右,K5 鼠标左键,K2与K3同时按下 鼠标右键)。 -based company ST
  3. 所属分类:嵌入式Linux

    • 发布日期:2024-05-19
    • 文件大小:11264
    • 提供者:卞璐
  1. ST710ADS

    0下载:
  2. ST ARM7 STR710系统处理器在ADS1.2环境下的源码库,该库包含所有官方函数接口,对编写STR710 ARM7处理器的程序非常有用,对完成项目定能起到事半功倍的效果。极力推荐-ST ARM7 processors in ADS1.2 environment for the source, The library contains all official function interface, the preparation
  3. 所属分类:微处理器(ARM/PowerPC等)

    • 发布日期:2024-05-19
    • 文件大小:1666048
    • 提供者:hou dong
  1. NESTR75xF

    0下载:
  2. ST公司STR750学习开发板软件包,其中包含所有例子代码!-ST Company STR750 learning development board package, which includes all the example code!
  3. 所属分类:单片机(51,AVR,MSP430等)

    • 发布日期:2024-05-19
    • 文件大小:568320
    • 提供者:关海
  1. SAX2

    0下载:
  2. SAX2 by David Brownell Copyright © 2002 O’Reilly & Associates, Inc. All rights reserved. Printed in the United States of America. Published by O’Reilly & Associates, Inc., 1005 Gravenstein Highway North, Se
  3. 所属分类:多媒体编程

    • 发布日期:2024-05-19
    • 文件大小:1268736
    • 提供者:yangyz
  1. ag

    0下载:
  2. 这个双重循环完成按字母顺序排序的工作。在外层循环中把字符数组cs[i]中的国名字符串拷贝到数组st中,并把下标i赋予P。进入内层循环后,把st与cs[i]以后的各字符串作比较,若有比st小者则把该字符串拷贝到st中,并把其下标赋予p。内循环完成后如p不等于i说明有比cs[i]更小的字符串出现,因此交换cs[i]和st的内容。至此已确定了数组cs的第i号元素的排序值。然后输出该字符串。在外循环全部完成之后即完成全部排序和输出。-The d
  3. 所属分类:C#编程

    • 发布日期:2024-05-19
    • 文件大小:3072
    • 提供者:lili
  1. ProgramExample

    0下载:
  2. 西门子运动控制器SIMOTION的经典程序框架,ST语言编写。 SIMOTION适用用工控行业各类生产机械的运动控制!-Siemens SIMOTION Motion Controller fr a mework classic, ST languages. SIMOTION applicable with all types of industrial production machinery industry to contro
  3. 所属分类:Windows编程

    • 发布日期:2024-05-19
    • 文件大小:1380352
    • 提供者:王卫楠
  1. brmotor0509

    0下载:
  2. ST公司各类电机控制参考指南,值得学习和参考-ST' s reference guide for all kinds of motor control, it is worth learning and reference
  3. 所属分类:单片机(51,AVR,MSP430等)

    • 发布日期:2024-05-19
    • 文件大小:1760256
    • 提供者:marie
  1. stm32_blink_led-1.2.0-100415

    0下载:
  2. Example project for ST STM32F103RB. In the code, beside blinking the LED with editable speed, there are some basic system initialization routines - enabling of all GPIO ports, configuraton of Flash latency and enabling P
  3. 所属分类:微处理器(ARM/PowerPC等)

    • 发布日期:2024-05-19
    • 文件大小:1496064
    • 提供者:sallum
  1. bisiDat

    0下载:
  2. Large set of functions for biological records (ECG, EEG, phono), datastore, datamining and analysis (HRV, QT, RR, ST). The application is written in Java, so that it is assumed to work on all devices. It runs as a deskto
  3. 所属分类:JSP源码/Java

    • 发布日期:2024-05-19
    • 文件大小:34816
    • 提供者:smauel
  1. SelfTest-Application-for-STM32107_LK

    0下载:
  2. ST公司推出的stm32f107单片机开发样板自带演示程序全代码-ST has introduced the stm32f107 SCM development model comes with all the code demo program
  3. 所属分类:单片机(51,AVR,MSP430等)

    • 发布日期:2024-05-19
    • 文件大小:3351552
    • 提供者:majiangwei
  1. SDMMC

    0下载:
  2. wince下SDMMC卡的操作,自己看英文的说明吧,很详细-======================================================================== Microsoft Foundation Class Library for Windows CE: SDMMC ===================================================
  3. 所属分类:Windows CE

    • 发布日期:2024-05-19
    • 文件大小:44032
    • 提供者:小蜇
  1. NEW

    0下载:
  2. 自动关机的计算机是一个命令。常见的有自动关闭窗口移动电话系统、嵌入式系统的自动关机。使用“关机”可以让计算机自动关机,但是如果打开许多文件会提示你保存文件不,你不必去手册确定,关闭这个命令是无用的。例如,你的电脑关机,可以选择- 22:00“开始跑”,在“输入”Shutdown-s 22:00,这样,到了22分将出现“计算机系统关机” -The automatic shutdown of the computer is a comm
  3. 所属分类:Windows编程

    • 发布日期:2024-05-19
    • 文件大小:1024
    • 提供者:顾洪利
  1. filter

    0下载:
  2. Digital filter 1-st level project. Xilnx System Generator sources + verilog sources (PlanAhead project). All docs are in archive. Fully work.
  3. 所属分类:VHDL编程

    • 发布日期:2024-05-19
    • 文件大小:201728
    • 提供者:
« 1 23 4 »

源码中国 www.ymcn.org