-
用C #开发的图书管理系统。网络很有用
C#.NET开发的图书管理系统,很好恨实用-BOOK MANAGEMENT SYSTEM DEVELOPED By C#.NET VERY USEFUL
- 2022-06-27 23:32:51下载
- 积分:1
-
ROM进出盒的演示程序
CD-ROM进出盒的演示程序 CD-ROM进出盒的演示程序-CD-ROM and out of the box demo CD-ROM and out of box demo program
- 2022-09-25 23:55:02下载
- 积分:1
-
初轨确定
测站在地心赤道坐标系下的位置。计算平格林尼治时角接下来求目标在地心赤道坐标系下的方向余弦下面利用高斯法求解r2、v2下面开始改进精度;最后利用求出的r2、v2计算轨道根数
- 2022-02-07 21:36:12下载
- 积分:1
-
本程序通过一个简单的例子,提供一个扩展资源管理器的框架,通过这个框架,从而实现资源管理器、我的电脑以及标准文件浏览框的鼠标右击功能,借助于右击菜单实现文件打印。...
本程序通过一个简单的例子,提供一个扩展资源管理器的框架,通过这个框架,从而实现资源管理器、我的电脑以及标准文件浏览框的鼠标右击功能,借助于右击菜单实现文件打印。-This procedure adopted by a simple example to provide a resource manager to expand the framework, the adoption of this framework in order to achieve Explorer, My Computer, as well as the standard file browser box of the mouse right-click function, through the use of right-click the file menu to print.
- 2022-04-14 10:15:56下载
- 积分:1
-
good ,适合初学者
good ,适合初学者-good, suitable for beginners
- 2022-04-13 08:40:35下载
- 积分: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
-
H.363低比特率通信的视频编码标准,中文版的,对视频压缩研究有帮助...
H.363低比特率通信的视频编码标准,中文版的,对视频压缩研究有帮助-Low bit rate H.363 video coding standard communication, the Chinese version of video compression research help
- 2023-06-26 11:20:04下载
- 积分:1
-
一个模仿Windows7桌面平台的源代码~写得好的画可以替代windows的桌面。集成了背景切换,右键换背景 目前只能换1次 (偷懒了点没写循环更换)。双击关闭...
一个模仿Windows7桌面平台的源代码~写得好的画可以替代windows的桌面。集成了背景切换,右键换背景 目前只能换1次 (偷懒了点没写循环更换)。双击关闭。支持图标透明,其中里面有个真正的透明通道控件――存在于Arone中。Arone中每个Item都是一个单独的控件。背景是在Form中,控件跟背景是透明融合。作者vIstaswx本来打算再写写去参赛的,结果先放给了本站,呵呵,再次感谢这个对GDI+技术高超的孩子。-An imitation of the source code for desktop platform Windows7 ~ write a good painting can replace the windows desktop. Integration of the background to switch, right-for the background is currently only available for a time (a point I did not write cycles lazy replacement). Double-click Close. Support icons transparent, inside of which there is a genuine and transparent access control- exist in Arone in. Arone Each Item is a separate control. Background is in the Form, the control integration with the background is transparent. By vIstaswx originally intend to write to the competition, the results of the first release to the site, Oh, once again thank the pairs of GDI+ highly skilled children.
- 2023-08-03 13:50:05下载
- 积分:1
-
windows服务管理类
压缩包包含两个文件ServiceManager.h、ServiceManager.cpp可以直接使用
CServiceManager提供接口如下:
BOOL IsActive(); // 查下服务是否开启
BOOL StopService(SC_HANDLE hService); // 关闭服务
BOOL StartService(); // 开启服务
BOOL ReStartService(); // 重启服务
BOOL GetDependentServices(SC_HANDLE hscService, std::vector& vecServiceStatus); // 获取服务依赖服务
- 2023-08-19 15:45:03下载
- 积分:1
-
pascal语言基础知识,新手可以通过它了解到有关pascal的基础知识...
pascal语言基础知识,新手可以通过它了解到有关pascal的基础知识-pascal基础
- 2022-02-22 02:19:06下载
- 积分:1