- Delphi对数据进行BASE64编码/解码单元 2011-09-03 点击:1964 评论:0
- Delphi从字符串中提取单词、从字符串中提取汉字的函数 2011-09-03 点击:1620 评论:0
- Delphi把Integer数组保存到文件、并读取 2011-09-03 点击:1316 评论:0
- Delphi把转换Byte数组到Integer 2011-09-03 点击:1536 评论:0
- Delphi获取进程的命令行参数 2011-09-03 点击:1519 评论:0
- 一个检测Delphi是否正在运行的函数 2011-09-03 点击:816 评论:0
- Delphi单元文件详细说明 2011-09-03 点击:1521 评论:0
- Delphi中Application.ProcessMessages的妙用 2011-09-03 点击:1881 评论:0
- Delphi会经常出现Access violations这样的内存访问错误 2011-09-03 点击:5787 评论:0
- Delphi如何粘贴HTML格式文本到Windows剪切板 2011-09-03 点击:1067 评论:0
代码调用范例Uses CnBase64;CnBase64.Base64Encode(Edit1.Text, Psw64);全部单元代码已经打包 迅雷专用高速下载 ...
{从字符串中提取单词的函数}procedure StrToWordList(str: string; var List: TStringList); var p: PChar; i...
unit Unit1;interfaceuses Windows, Messages, SysUtils, Variants, Classes, Graphics, Control...
{转换 TBytes 到 Integer}procedure TForm1.Button1Click(Sender: TObject);var bs: TBytes; {TByte...
type UNICODE_STRING = packed record Length: Word; MaximumLength: Word; Buffer: PWideChar; ...
function DelphiIsRunning: Boolean;constA1: array[0..12] of char = 'TApplication'#0;A2: arr...
1.库单元文件头:其中声明了库单元的名字.2.Interface部分:由保留字interface开始,结束于保留字implementation,它用来声明引用的单元,常量,数据类型...
//如果有这样一个循环, 是非常可怕的; 因为它完不了, 你得等着.procedure TForm1.Button1Click(Sender: TObject);var i: In...
究竟什么是“AccessViolation”?如何在设计期避免它的出现? AccessViolation(非法访问),GeneralProtectionFault(一般保护性错...
如果用CF_TEXT格式将HTML格式的文本复制到剪贴簿,那么在Word等软件中粘贴得到的将是大量的HTML标签,而不是带格式的文本。因此,你需要在剪贴簿中注册“HTML格式”,并...