-
19552_rundll
简介: 可以给任何程序文件加注册码 您可以用来发布您的程序,用户用您的程序后,程序随机得出一个用户码,用户将此用户码发给您,您通过一个计算程序得出注册码,一个机器一个注册码。(Profile : can any files to increase your license key can be used to release your procedures, your users to use the procedure, draw a random procedure code users, user code to the user, your program through a license key draw, a machine a license key.)
- 2007-05-13 13:27:57下载
- 积分:1
-
C++Primer Plus第6版中文版源代码
应用背景C++PrimerPlus第六版课本源代码,和课本同步,嗯注释是英文的(肯定啊),代码和课本上的一样,官网的链接挂了发在这里供各位学习关键技术
示例:
// stack.h -- class definition for the stack ADT
#ifndef STACK_H_
#define STACK_H_
typedef unsigned long Item;
class Stack
{
private:
enum {MAX = 10}; // constant specific to class
Item items[MAX]; // holds stack items
int top; // index for top stack item
public:
Stack();
bool isempty() const;
bool isfull() const;
// push() returns false if stack already is full, true otherwise
bool push(const Item & item); // add item to stack
// pop() returns false if stack already is empty, true otherwise
bool pop(Item & item); // pop top into item
};
#endif
- 2022-03-16 20:51:53下载
- 积分:1
-
GridView导出Excel
visual studio 中实现GridView导出到Excel,在实际项目中经常遇到导出到excel,有了这个代码,就不用在发愁了。
- 2022-12-12 05:10:03下载
- 积分:1
-
test
msp430f149读写CF卡操作,测试程序使用128M CF 存储卡,该程序可以直接对硬盘进行读写。(MSP430F149 read CF card operation, using testing procedures 128M CF memory card, the program can read and write directly to hard disk.)
- 2008-01-12 13:37:32下载
- 积分:1
-
xiangweiji
使用51单片机设计的相位计,并有毕业设计论文。(Use of 51 single-chip design phase meter, and a graduation thesis.)
- 2013-09-26 14:11:33下载
- 积分:1
-
消除程序里的解释部分
消除程序里的解释部分-removing procedural part of the explanation
- 2022-05-16 07:37:23下载
- 积分:1
-
dianzishu
《蚁群算法原理及其应用》电子书,段海斌编著,希望对你有帮助!( Ant colony algorithm theory and its applications, e-books, edited segment Haibin, I hope for your help!)
- 2014-08-03 15:32:15下载
- 积分:1
-
15个WPF项目例子+WPF经典开发教程
对Wpf编程案例进行详细描述,由此对开发人员理解WPF使用方法极有好处。(To describe the applications of WPF programming in detail and to be good for developers to understand the usage of WPF programming.)
- 2020-10-10 16:47:33下载
- 积分:1
-
购物车代码
这是一个C#编写的购物车代码。是利用Dreamweaver做的。
- 2022-03-01 13:11:27下载
- 积分:1
-
数控电压源
一款基于IAP15W4K61S4的数控电压源(A Digital Voltage Source Based on IAP15W4K61S4)
- 2020-06-19 15:20:02下载
- 积分:1