-
一个创建 对象的小程序,可以作到抛砖引玉吧
一个创建 对象的小程序,可以作到抛砖引玉吧-A small program to create the object, you can definitely do it
- 2022-03-24 20:21:07下载
- 积分:1
-
本ASP上传组件可同时上传多个文件,并可过滤掉不允许上传的文件(如 asp文件等)。当上传文件与已有文件重名时,可选择“不覆盖”、“覆盖”和“改名”三种处理方式...
本ASP上传组件可同时上传多个文件,并可过滤掉不允许上传的文件(如 asp文件等)。当上传文件与已有文件重名时,可选择“不覆盖”、“覆盖”和“改名”三种处理方式对上传进行控制,并且还可设置自定义文件名。上传完毕后,可取得上传的文件个数,上传成功的文件个数,上传到的路径,以及上传过程中组件内部的重要处理成功与否等等信息。(解压后的WEB目录下是可直接注册使用的组件和ASP示例文件)-This ASP can simulatly upload many files
- 2022-03-18 05:03:52下载
- 积分:1
-
imitate a resource for the dialog management procedures, and by CTreeCtl CListCt...
一个模拟资源的对话框管理程序,并由CTreeCtl CListCtl实现。
- 2022-02-20 14:15:14下载
- 积分:1
-
Cpu speed test function code, easy
提供测试cpu速度功能的代码,简单好用,在vc6.0下编译测试没有问题-Cpu speed test function code, easy-to-use, in the compiler under test vc6.0 no problem
- 2022-08-06 21:54:00下载
- 积分:1
-
这里定义了一个编程语言称作C-M i n u s (或简称为C-),这是一种适合编译器设计方案的
语言,它比T I N Y语言更复杂,包括函数和数组。本质上...
这里定义了一个编程语言称作C-M i n u s (或简称为C-),这是一种适合编译器设计方案的
语言,它比T I N Y语言更复杂,包括函数和数组。本质上它是C的一个子集,但省去了一些重要-Here defines a programming language called C-M inus (or simply C-), which is a suitable compiler design language, it is more complex than the TINY language, including the functions and arrays. It is essentially a subset of C, but eliminating the need for a number of important
- 2022-09-03 03:10:03下载
- 积分:1
-
Basic MP3 player. a basic mp3 player in Visual Basic 6
Basic MP3 player. a basic mp3 player in Visual Basic 6
- 2022-09-19 18:15:03下载
- 积分:1
-
分辨率的设置程序,可以任意测试设置系统的分辨率
分辨率的设置程序,可以任意测试设置系统的分辨率-Resolution of the setup program, you can test the system of arbitrary resolution
- 2022-03-04 07:49:14下载
- 积分:1
-
This is not a windowsNT released the Chinese version. Stresses the system is des...
这是一本没有发布的 windowsNT 中文版。
是讲系统说明的。
一个朋友 翻译的-This is not a windowsNT released the Chinese version. Stresses the system is described. A friend translated
- 2022-09-10 04:05:03下载
- 积分:1
-
- 2022-05-18 05:47:09下载
- 积分:1
-
C语言实现贪吃蛇
//: Snake.c
/* * * * * * * * * * * * * * * * * * * * * * *
// Project: RedSnake(贪吃蛇)
// Author: Problue
// Version: 1.0
// Date: 19:55 2012-10-29
* * * * * * * * * * * * * * * * * * * * * * */
#include
#include
#include
#include "pcc32.h"
// 定义地图的尺寸及坐标
#define MAP_WIDTH 32 // 地图宽度
#define MAP_HEIGHT 32 // 地图高度
#define OFFSET_X 1 // 地图左右的边距
#define OFFSET_Y 1 // 地图上下的边距
#define TOTAL_WIDTH (MAP_WIDTH + OFFSET_X * 2) // 窗口宽度
#define TOTAL_HEIGHT (MAP_HEIGHT + OFFSET_Y * 2) // 窗口高度
#define GotoMap(x, y) gotoTextPos((x) * 2, (y))
// 定义地图方格的状态,分别为: 空格、蛇头、蛇身、蛇尾、食物
#define BS_SPACE 0
#define BS_SHEAD 1
#define BS_SBODY 2
#define BS_STAIL 3
#define BS_FOOD 4
// 蛇默认长度
#define SNAKE_MIN_LEN 5
// 定义蛇运动方向: 上、下、左、右
#define DIR_UP 1
#define DIR_DOWN 2
#define DIR_LEFT 3
- 2022-05-15 19:59:34下载
- 积分:1