论坛


2009年4月14日 星期二

把 Integer 数组保存到文件、并读取

万一| 万一的 Delphi 博客 |20:40:00

unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TForm) Button1: TButton; Button2: TButton; procedure Button1Click(Sender: TObject); ...

SecureBlackBox V5.1 Full Source

DELPHI盒子| Delphi盒子 |16:04:00

支持Indy, ICS, RemObject, kbmMW等. SSL支持也是纯Delphi,不需要任何第三方DLL 官方站点:http://www.eldos.com/ 目前最新版本是V7,可惜没有源码, V5的源码也很不错 支持的朋友顶!

从字符串中提取单词、从字符串中提取汉字的函数

万一| 万一的 Delphi 博客 |15:55:00

{从字符串中提取单词的函数} procedure StrToWordList(str: string; var List: TStringList); var p: PChar; i: Integer; begin if List = nil then List := TStringList.Create; List.Clear; {去除重复} List.Sorted := True; List.Duplicates := dup...

A New Role for Nick

Nick Hodges| Nick Hodges |10:05:21

There have been some changes around here and as a result, I have a new job within Embarcadero.  I am now an R&D Manager on the RAD Studio team, working more closely with the development team to ensure that we deliver a feature rich, stabl...

RegEx / Regular Expression Components for Delphi

About.com| About.com Delphi Programming |02:00:13

in Delphi Tools and Components :: A regular expression (regex, regexp) is a string that describes or matches a set of strings, according to certain syntax rules. Regular expressions are...