摘要: //判断是否是数字 function IsNumeric(sDestStr: string): Boolean; //简写多余汉字 function SimplifyWord(sWord: string; iMaxLen: Integer): string; //读写取注册表中的字符串值 ... 阅读全文
posted @ 2014-10-18 14:57 孤舟残月浅笑嫣然 阅读(340) 评论(0) 推荐(0) 编辑
摘要: //判断字符是否是汉字 function IsHZ(ch: WideChar): boolean; var i:integer; begin i:=ord(ch); if( i40869) then result:=false else result:=true; ... 阅读全文
posted @ 2014-10-18 14:51 孤舟残月浅笑嫣然 阅读(530) 评论(0) 推荐(0) 编辑
摘要: 要实现目录级的拷贝,可以利用Windows API函数ShFileOperation( ),其函数声明如下: WINSHELLAPI int WINAPI SHFileOperation( LPSHFILEOPSTRUCT lpFileOp ); 实例: 新建一个工程,... 阅读全文
posted @ 2014-10-18 14:48 孤舟残月浅笑嫣然 阅读(292) 评论(0) 推荐(0) 编辑
摘要: //提示:此代码需要use Registry, Common; function WriteMAC(model:integer):integer; var reg:TRegistry;begin reg:=TRegistry.Create; //创建注册表对象 reg.RootKey... 阅读全文
posted @ 2014-10-18 14:47 孤舟残月浅笑嫣然 阅读(362) 评论(0) 推荐(0) 编辑
摘要: 一、文件文本文件是以行为单位进行读、写操作的。文本文件只能单独为读或写而打开,在一个打开的文本文件上同时进行读、写操作是不允许的。二、定义FileStream: TFileStream;三、打开文件Filestream:= TFileStream.Create(AFileName: string; ... 阅读全文
posted @ 2014-10-18 14:41 孤舟残月浅笑嫣然 阅读(1553) 评论(0) 推荐(0) 编辑
摘要: private SortCol: Integer; SortWay: Integer; procedure TForm1.LVweColumnClick(Sender: TObject; Column: TListColumn); begin ... 阅读全文
posted @ 2014-10-18 14:22 孤舟残月浅笑嫣然 阅读(1652) 评论(0) 推荐(0) 编辑
摘要: procedure KillProcess(ExeName: string); const PROCESS_TERMINATE = $0001; //进程的PROCESS_TERMINATE访问权限 var ContinueLoop: Boolean; F... 阅读全文
posted @ 2014-10-18 14:20 孤舟残月浅笑嫣然 阅读(543) 评论(0) 推荐(0) 编辑
摘要: IP地址的隐藏 一、前言 本文主要介绍如何在程序中实现IP地址的隐藏。其实这篇东西不算我写的。其中《IP头结构》部分我懒得打字,故复制、粘贴了孤独剑客的文章,先说声谢谢!代码部分参考了外国程序xes写的一个程序。所以这只是学习过程中的一个副产品。既然程序已经做好了,就顺便放上来跟大家一起... 阅读全文
posted @ 2014-10-18 14:18 孤舟残月浅笑嫣然 阅读(377) 评论(0) 推荐(0) 编辑
摘要: 在开发某些软件的时候,为了保护程序自身,就需要用到隐藏程序进程。以下通过实例来讲解隐藏程序进程的方法: 1、创建一个新的项目 Project1 选择File,New Application。在表单Form1上放一Memo组件,一个OK按钮组件,改变OK按钮组件的Cation属性为 ... 阅读全文
posted @ 2014-10-18 14:15 孤舟残月浅笑嫣然 阅读(1980) 评论(0) 推荐(0) 编辑
摘要: interface function MyHideProcess: Boolean; implementation uses Windows, Classes, AclAPI, accCtrl; type NTSTATUS = LongInt; const //... 阅读全文
posted @ 2014-10-18 14:14 孤舟残月浅笑嫣然 阅读(477) 评论(0) 推荐(0) 编辑