论坛


2008年11月5日 星期三

WinAPI 字符及字符串函数(12): lstrlen - 串长度

万一| 万一的 Delphi 博客 |21:49: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); ...

WinAPI 字符及字符串函数(11): lstrcpyn - 复制字符串, 同时指定要复制的长度

万一| 万一的 Delphi 博客 |21:39:00

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

WinAPI 字符及字符串函数(10): lstrcpy - 复制字符串

万一| 万一的 Delphi 博客 |21:18:00

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

WinAPI 字符及字符串函数(9): lstrcat - 合并字符串

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

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

BusinessSkinForm v.7.07

CodeGear| CodeGear-CodeCentral Delphi |20:35:59

BusinessSkinForm VCL library help you to create applications with skins support for forms, menus, hints, many standard and DB controls. You can create your skins with special editor. Develop your business applications with BusinessSkinForm VCL!Fea...

DynamicSkinForm v.10.07

CodeGear| CodeGear-CodeCentral Delphi |20:33:21

DynamicSkinForm VCL library help you to create applications with skins. Skins support for forms, menus, hints, many standard and non-standard original controls. Skins with many objects, effects help you to create standard and non-standard cool ap...

Memories of Turbo Pascal version 1.0 - Peter Wolfgram, Australia

David I| Sip from the Firehose |19:22:52

From: Peter Wolfgram - wolfworks.com.au Sent: Wednesday, November 05, 2008 4:45 AM Subject: Memories of Turbo Pascal/Delphi Turbo Pascal 1.0. I was working at a daily newspaper and at the time had built my personal computer, a CPM computer using S...

pcre 7.8 for delphi(OBJ)

CodeGear| CodeGear-CodeCentral Delphi |17:11:00

pcre 7.8 for delphi(OBJ)based on Renato Mancuso's dpcre.(http://www.renatomancuso.com/software/dpcre/dpcre.htm)No DLL required.Special thanks to Philip Hazel & Renato Mancuso.

loglist - simple message listing

CodeGear| CodeGear-CodeCentral Delphi |17:06:21

loglist is simple message list component.

Form.Hide/Close - Stack tashing bugfix unit

CodeGear| CodeGear-CodeCentral Delphi |16:45:08

HideStackTrashingFix is a bugfix unit that fixes QC #66892 (Closing forms deactivates the application). This bug is caused by a missing "stdcall" directive in a function that is called from Form.Hide/Close. It also trashes the st...

WinAPI 字符及字符串函数(8): IsCharLower - 是否是个大写字母

万一| 万一的 Delphi 博客 |14:37:00

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

WinAPI 字符及字符串函数(7): IsCharLower - 是否是个小写字母

万一| 万一的 Delphi 博客 |14:36:00

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

WinAPI 字符及字符串函数(6): IsCharAlphaNumeric - 是否是个文字(字母或数字)

万一| 万一的 Delphi 博客 |14:32:00

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

WinAPI 字符及字符串函数(5): IsCharAlpha - 是否是个字母

万一| 万一的 Delphi 博客 |14:19:00

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

WinAPI 字符及字符串函数(4): CharLowerBuff - 把缓冲区中指定数目的字符转大写

万一| 万一的 Delphi 博客 |14:03:00

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