jingzhongrong

NullPointerException

2008年05月08日

置顶 原创 C#动态调用C++编写的DLL函数

C#动态调用C++编写的DLL函数的方法以及在C#中如何声明对应的C++函数。阅读全文>

发表于 @ 2008年05月08日 15:07:00|评论(loading...)|编辑|举报|收藏

2007年09月29日

置顶 原创 两种检测USB设备插入和移除的方法(Ver 2)

提供如何判断、检测USB设备的插入和移除的操作,但并不提供如何卸载USB设备的描述。两种方法分别是通过循环检测系统盘符并判断盘符的类型进行判断;响应WM_DEVICECHANGE消息进行判断。文章最后给出了一个基于第二个方法的简单应用,即一个简单的根据文件名判断是否可能包含有U盘病毒的检测程序。阅读全文>

发表于 @ 2007年09月29日 00:18:00|评论(loading...)|编辑|举报|收藏

2009年01月05日

原创 简单的源码备份工具

简单的源码备份工具阅读全文>

发表于 @ 2009年01月05日 12:42:00|评论(loading...)|编辑|举报|收藏

2008年10月29日

原创 [Unicode版本]在BCB中使用选择文件夹对话框


by jingzhongrong

原文地址:http://blog.csdn.net/jingzhongrong/archive/2007/01/02/1472452.aspx

由于使用到了UnicodeString,因此,本篇文章只适用于BCB2009。

使用方法,见文章后。

效果:

theFolderDialog.h如下://--------------------------------------------------------------------------- #define NO_WIN32_LEAN_AND_MEAN #ifndef theFolderDialogH #define theFolderDialogH //--------------------------------------------------------------------------- #include  #include 阅读全文>

发表于 @ 2008年10月29日 20:50:00|评论(loading...)|编辑|举报|收藏

2008年04月15日

原创 简单的多桌面的实现

多个桌面的简单实现,不同桌面可以运行不同程序,互不干扰。纯粹自娱。阅读全文>

发表于 @ 2008年04月15日 21:22:00|评论(loading...)|编辑|举报|收藏

2008年02月08日

原创 使用Windows的启动菜单启动linux

Windows和Linux双启动配置(通过Windows XP的启动菜单启动Fedora8)的详细配置方法阅读全文>

发表于 @ 2008年02月08日 15:43:00|评论(loading...)|编辑|举报|收藏

2007年09月27日

原创 AutoStartApplication

1、支持随Windows启动2、可添加要启动的程序列表,并可以设置本次是否要启动而不必删除列表中的项3、间隔启动程序使用C#2005编写,运行时需要.NET Framework阅读全文>

发表于 @ 2007年09月27日 18:55:00|评论(loading...)|编辑|举报|收藏

2007年09月19日

原创 使用ComboBox控件对ListView控件中的数据进行编辑

在默认状态下,ListView控件的编辑功能是通过提供一个类似Edit控件的栏来实现的。但是如果你想让界面更加友好或者希望使用其他类型的控件来编辑数据,以提高操作的便利性。如下图所示,我们利用一个ComboBox控件来让用户以选择的方式来编辑数据。阅读全文>

发表于 @ 2007年09月19日 21:27:00|评论(loading...)|编辑|举报|收藏

2007年08月04日

原创 系统蓝屏前后所做的事情

系统蓝屏前后所做的事情(包括连接有调试器的情况)阅读全文>

发表于 @ 2007年08月04日 17:25:00|评论(loading...)|编辑|举报|收藏

2007年06月06日

原创 控制台输出控制

修改控制台输出设置,例如更改字体输出颜色、标题栏文字等等阅读全文>

发表于 @ 2007年06月06日 21:40:00|评论(loading...)|编辑|举报|收藏

2007年04月02日

转载 SSDT Hook的妙用-对抗ring0 inline hook

SSDT Hook的妙用-对抗ring0 inline hook阅读全文>

发表于 @ 2007年04月02日 00:54:00|评论(loading...)|编辑|举报|收藏

转载 内核级HOOK的几种实现与应用

内核级HOOK的几种实现与应用 阅读全文>

发表于 @ 2007年04月02日 00:52:00|评论(loading...)|编辑|举报|收藏

转载 安全稳定的实现进线程监控

安全稳定的实现进线程监控阅读全文>

发表于 @ 2007年04月02日 00:51:00|评论(loading...)|编辑|举报|收藏

转载 Kernel-mode API spying - an ultimate hack

First of all, let‘s look at complications, arising from the fact that our spying activity is going to take place in the kernel mode. To begin with, Windows is a protected system, which means user-mode applications have no access to the kernel address space. Therefore, a spying DLL, described in the previous article, cannot work in kernel mode - in order to start spying in kernel mode, we have to write not a DLL but a kernel-mode spying driver.阅读全文>

发表于 @ 2007年04月02日 00:49:00|评论(loading...)|编辑|举报|收藏

转载 Loading drivers and Native applications from kernel mode, without touching registry

This is required because even if you exploit kernel vulnerabilities ,you still cannot load any driver because almost all existing Antivirus solutions hijack the NTOSkrnl API‘s ( which let you write to specific registry locations, load drivers etc).After Windows 2000 start‘s up, It starts loading the special driver win2k.sys.It doesn‘t load in the traditional way (as all other drivers are loaded) by calling the following procedures ZwLoadDriver, NtLoadDriver etc.阅读全文>

发表于 @ 2007年04月02日 00:47:00|评论(loading...)|编辑|举报|收藏

Csdn Blog version 3.1a
Copyright © jingzhongrong