自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

从游戏中看生活

游戏人生

  • 博客(10)
  • 资源 (15)
  • 问答 (1)
  • 收藏
  • 关注

原创 突破灰色按钮原理讲解

笔者在使用各种收费软件的时候总想去找破解版,在找不到破解版的情况下,又尝试各种破解办法,去突破收费功能,相信大家跟我一样,也经常这么做。不过这样做真心使我们的软件行业一路沉沦下去,没人再愿意去努力做更好的软件,做出来也被人很快去破解,得不偿失。这里还是希望大家都支持正版。当然这篇文章不是为了讲解破解,只是想探讨一下灰色按钮的去除方法,该技术已然不是什么秘密,像当年的灰色按钮克星之类早已实现,本着学

2014-08-02 17:15:43 4939

原创 网上购票挤线器源码

看到很多人都在为网上购票写软件,我也简单尝试了一下,贴一下主要实现方法:                     WebBrowser browser = (WebBrowser)sender;                if (browser.ReadyState                 {                    return;

2012-01-12 11:09:34 807

原创 WinPCAP封包协议分析

对WINPCAP简单封装,直接看代码吧。头文件:#pragma once#include #include class CNetCap{public:CNetCap(void);virtual ~CNetCap(void);pcap_if_t * m_dDevice;pcap_if_t * m_dAllDevice;pcap_t * m_fC

2012-01-12 11:01:37 834

翻译 操作系统版本

 这本书包括三个基于WindowNT技术的最新的Windows操作系统:Window2000,WinXp(32位和64位)和Win2003(32位和64位)。本书大部分都是基于这三个版本之上的。表格1-1列出了发行的基于Windows NT产品的内部版本和产品名称。从一开始公开WindowNT时,微软就解释说Window NT将取代Window95(Win95后相继发布Win98,WinMe)。下

2009-11-27 17:19:00 699

原创 (1)概念和工具

这一节,我们将介绍Windows操作系统关键性的概念和我们将读此书所涉及到的专业术语,比如Windows API,进程,线程,虚拟内存,内核模式,用户模式对象,句柄,安全和注册表。我们也将介绍探索windows内部的一些工具,比如内核调试工具,性能工具和http://www.sysinternals.com网站下载的关键工具。此外,我们将介绍如何使用 Windows 设备驱动程序组件 (DDK)

2009-11-27 10:15:00 386

WebService处理.net中Dataset问题解决办法

  在此我用的是Asix框架来解决的,在Asix包下有一个叫作WSDL2Java的类,可用来解析WSDL以生成Java代码供程序员使用,我尝试过用soap来处理Dataset,不过没有成功(浪费了不少时间)。   首先下载Asix包,直接到Apache下就可以了,下载完成后将解压的webroot/lib下的包全部拷到JDK的lib目录下。然后由控制台进入Jdk目录,运行: Java -Dj...

2008-10-18 11:20:17 395

原创 C++基础星形打印方法

#include      void rectangle(int heigth, int width);     void isosceles(int heigth);     void diamond(int heigth);     int main()    {       int heigth;       int width;     

2008-10-10 22:01:00 966

C++基础星形打印方法

[code="java"]#include void rectangle(int heigth, int width);void isosceles(int heigth);void diamond(int heigth);int main() { int heigth; int width; char c; coutheigth; iso...

2008-10-10 21:59:48 288

Dwr+Spring配置

Properties extraProperties = new Properties(); extraProperties.put("hibernate.connection.useUnicode", "true"); extraProperties.put("hibernate.connection.characterEncoding", "UTF-8"); ...

2008-10-03 23:51:59 89

原创 Introducing Ajax

Internet scripting technology has come along at a very brisk pace. While its roots arelodged in text-based displays (due to very limited amounts of storage space and memory),over the years it has rapi

2008-04-03 14:58:00 418

使用iptables建设Linux防火墙

使用IPTABLES对于网管来说是家常便饭,希望这个文档对你有用,谢谢

2014-10-27

IT面试之腾讯笔试面试大礼包

这是腾讯的面试题经过整理的,想看的好好看看吧,想去腾讯面试的,这是福利

2014-10-27

灰色按钮突破原理示例代码

笔者在使用各种收费软件的时候总想去找破解版,在找不到破解版的情况下,又尝试各种破解办法,去突破收费功能,相信大家跟我一样,也经常这么做。不过这样做真心使我们的软件行业一路沉沦下去,没人再愿意去努力做更好的软件,做出来也被人很快去破解,得不偿失。这里还是希望大家都支持正版。当然这篇文章不是为了讲解破解,只是想探讨一下灰色按钮的去除方法,该技术已然不是什么秘密,像当年的灰色按钮克星之类早已实现,本着学习研究的态度,今天写写对灰色按钮原理的一些看法。

2014-08-02

c++连接mysql示例

MYSQL * get_conn(); map query_for_object(string sql,string * params); vector<map> query_for_list(string sql, string * params); int update_data(string sql, string * params); int insert_data(string sql, string * params); int delete_data(string sql, string * params); void close_server();

2012-10-17

C++版二分法查找算法

class binary_search { public: int * arr; int nElems; public : binary_search(); binary_search(int max); virtual ~binary_search(); int find(int searchKey); void insert(int value); void deleteElems(int value); void display(); int size(); };

2012-10-17

WebServices访问Oracle的三层框架例子

WebServices访问Oracle的三层框架例子

2012-10-15

js仿Windows窗口

To make it easier for you, please have a look at ALL of the following samples. Most probably your upcoming question during developing with WinLIKE will be answered here. Please see the source code of the samples and the associated files to learn how you can define and use the many features of WinLIKE. Now move your mouse over the screenshots and get a short description of the samples. Then simply click to start. JS仿微软窗口效果

2012-10-15

delphi fastnet网络开发控件

Section 1. To make changes to source 1)Change the related .pas file in the /lib directory 2)Recompile DCLNMF50.dpk in the lib directory 3)Copy the resulting DCLNMF50.bpl to the /bin directory Note This DCLNMF50.bpl file may be in your /lib or /projects/bpl directory after the compile depending on your configuration

2012-10-15

Delphi界面美化控件

Delphi美化控件, The entire contents of this file is protected by International Copyright Laws. Unauthorized reproduction, reverse-engineering, and distribution of all or any portion of the code contained in this file is strictly prohibited and may result in severe civil and criminal penalties and will be prosecuted to the maximum extent possible under the law.

2012-10-15

delphi视频控件

The file avicap.pas now is called vfw.pas. Vfw.pas is an interface to Capture and DrawDib in Video for Windows . The Tvideo component is now called TvideoCap. There is also a new component called TvideoDisp to display framebuffers. At the moment there is no description of TvideoDisp included.

2012-10-15

oracle10g初始化参数说明.doc

参数名: O7_DICTIONARY_ACCESSIBILITY 类别:安全性和审计 说明: 主要用于从 Oracle7 移植到 Oracle8i。如果该值为 TRUE, SYSTEM 权限 (如 SELECT ANY TABLE) 将不限制对 SYS 方案中各对象的访问 (Oracle7 行为)。如果该值为FALSE, 只有被授予了 SELECT_CATALOG_ROLE, EXECUTE_CATALOG_ROLE 或 DELETE_CATALOG_ROLE 权限的用户才能访问 SYS 方案中的各对象。 值范围: TRUE | FALSE 参数名:active_instance_count 类别:群集数据库 说明: 允许在由两个例程构成的集簇中指定一个例程作为主例程, 另一个例程为次例程。 如果集簇中包含的例程多于两个,该参数没有作用。 值范围: 1 或 >= 集簇中的例程数。 默认值: 无

2010-05-17

java读取.net WebService中的Dataset

在此我用的是Asix框架来解决的,在Asix包下有一个叫作WSDL2Java的类,可用来解析WSDL以生成Java代码供程序员使用,我尝试过用soap来处理Dataset,不过没有成功(浪费了不少时间)

2008-10-18

最新最好的星号密码查看器

最小最好的密码查看器,只需将鼠标放到文本框内,既可显示你所要的数据

2008-09-10

Oracle考试复习资料试题

最新Oracle考试复习资料 最新的Oralce考试

2008-09-05

最新超强文件加密软件

超强文件加密,可用于重要资料保护,可防止格式化

2008-09-05

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除