-
基于对话框编程,设置窗体的背景颜色,改善窗体美观
基于对话框编程,设置窗体的背景颜色,改善窗体美观-Dialog based programming, setting a form" s background color to improve the aesthetic form
- 2022-07-08 03:16:39下载
- 积分:1
-
WINCE GOOD Player For WInCE
WINCE GOOD Player For WInCE-WINCE GOOD Player
- 2023-08-10 18:15:04下载
- 积分:1
-
这是一个用EXCEL表格内容是关于一些统计,调查等
这是一个用EXCEL表格内容是关于一些统计,调查等-Excel is about some statistics, surveys, etc.
- 2022-02-21 22:43:59下载
- 积分:1
-
轻量级SQL SERVER编辑工具
这是一个基于C#编写的轻量级的SQL SERVER编辑工具,它不仅可以编辑SQL 语句,更可以脱离SQL SERVER来执行并获得所需的结果,非常方便,是您研究数据库连接与实现的好源码。注意:建立工程是基于VS2010的。使用方法:1、执行该工具2、选择数据库引擎3、选择数据库实例4、运行软件
- 2022-12-16 11:25:04下载
- 积分:1
-
这是matlab与VC编程的源码
所有程序的运行和编译环境为:Visual C++ 6.0和MATLAB 6.5 service pack1(一般情况下MA...
这是matlab与VC编程的源码
所有程序的运行和编译环境为:Visual C++ 6.0和MATLAB 6.5 service pack1(一般情况下MATLAB 6.5即可)。
如果您有和技术相关的问题或者发现本书实例有错误之处,请发邮件到:
matlab_vc_program@yahoo.com.cn
与作者联系或批评指正。
-This is the matlab programming with VC source of all programs running and the compiler environment: Visual C++ 6.0 and MATLAB 6.5 service pack1 (under normal circumstances can MATLAB 6.5). If you have and the technology-related questions or find examples of this book have errors, please send an email to: matlab_vc_program@yahoo.com.cn contact with the author or criticism.
- 2022-04-07 18:09:14下载
- 积分:1
-
vc汉诺塔的程序手册的准备
vc编写的汉诺塔手动程序-vc HANOR prepared by the procedures manual
- 2022-07-07 01:31:25下载
- 积分:1
-
黑白道小游戏,源代码,大家互相学习一下。
黑白道小游戏,源代码,大家互相学习一下。-Black and White Road, a small game, source code, we learn from each other about.
- 2022-02-28 09:55:25下载
- 积分:1
-
Thomas Wong C programming tips, download can decompress
汤姆斯旺C++编程秘诀,下载后解压缩即可-Thomas Wong C programming tips, download can decompress
- 2022-08-22 16:06:28下载
- 积分: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
-
super map中例子,在vc中实现GPS定位的应用小例子。
super map中例子,在vc中实现GPS定位的应用小例子。-super map in the example, in vc realize GPS positioning in the application of small examples.
- 2022-03-04 04:14:28下载
- 积分:1