2008年10月29日 星期三
三层开发包MateyDB
DELPHI盒子| Delphi盒子 |16:10:00
MateyDB是一套友好的三层开发组件包,它采用RemObject SDK作为数据传输通道, 由中间层服务器和客户端开发包两部分组成。 MateyDB有以下几大特点: (1)、中间层服务器具有稳定性强、安全性高、负载量大等特点,已有成功的大项目在使用; (2)、根据服务器端的参数设置...
学习 Message(10): WM_CancelMode 消息测试
万一| 万一的 Delphi 博客 |16:03:00
启动模式窗口, 当前窗口会收到一条 WM_CancelMode 消息; 改消息无参数.本例效果图:代码文件:unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TForm) ...
学习 Message(9): 消息结构纵览
万一| 万一的 Delphi 博客 |14:29:00
传递消息就是传递消息数据, 数据是一组数据, 所以消息是一个结构;系统标准的消息结构在 Delphi 中被定义为 TMsgPMsg = ^TMsg; tagMSG = packed record hwnd: HWND; message: UINT; wParam: WPARAM; lParam: LPARAM; time: DWORD; pt: TPoint; end; TMsg ...
Indy In Depth.pdf下载
Admin| 二十年前旧板桥 |13:55:55
Indy In Depth.pdf详细章节见下图。下面是下载连接:http://www.namipan.com/downfile/Indy%20In%20Depth.pdf/f81a99a0351cd6dea36e88abd15cebf363efec4f752f0c00Tags -delphi,indy
PocketCaddy
CodeGear| CodeGear-CodeCentral Delphi |12:37:27
PocketCaddy is a Delphi for .NET Compact Framework application designed to run on PocketPC devices, and is used to keep track of the scores for a round of golf for one or more players. It allows for player and golf course details to be entered and...
PocketCaddy
CodeGear| CodeGear-CodeCentral Delphi |12:37:27
PocketCaddy is a Delphi for .NET Compact Framework application designed to run on PocketPC devices, and is used to keep track of the scores for a round of golf for one or more players. It allows for player and golf course details to be entered and...
I’m in Dr. Dobbs!
Nick Hodges| Nick Hodges |09:25:34
I did a podcast for the folks over at Dr. Dobbs.  Most of it was about Delphi Prism — the interviewer was pretty excited about it. 
I’m in Dr. Dobbs!
Nick Hodges| Nick Hodges |09:25:34
I did a podcast for the folks over at Dr. Dobbs.  Most of it was about Delphi Prism — the interviewer was pretty excited about it. 
Delphi and C++Builder 2009 - the best, RAD/Visual native code tools for Windows 7
David I| Sip from the Firehose |02:10:20
At PDC 2008 in Los Angeles this week, Microsoft demonstrated and delivered preview releases of Windows 7 to the attendees at the conference. The Wall Street Journal MarketWatch said in their article, "Windows 7 extends developers’ investment...
2008年10月28日 星期二
当前窗体
万一| 万一的 Delphi 博客 |22:50:00
代码文件:unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ExtCtrls; type TForm1 = class(TForm) Panel1: TPanel; Button1: TButton; procedure Button1Click(Se...
禁止在DBGrid中按delete删除记录
幸福苹果| 幸福苹果-delphi |18:52:00
禁止在DBGrid中按delete删除记录procedure TForm1.DBGrid1KeyDown(Sender: TObject; var Key: Word; Shift: TShiftState);beginif (ssctrl in shift) and (key=vk_delete) then key:=0;end;类别:delphi编程 查看评论
在DELPHI中中止指定进程
幸福苹果| 幸福苹果-delphi |18:51:00
在DELPHI中中止指定进程usesTlhelp32;function KillTask(ExeFileName:string):integer;constPROCESS_TERMINATE = $0001;阅读全文类别:delphi编程 查看评论
Delphi中调用屏保和中止屏保
幸福苹果| 幸福苹果-delphi |18:51:00
Delphi中调用屏保和中止屏保请问在delphi里要怎样才能调出windows的屏幕保护使它自动运行。又怎么才能使它结束呢?---------------------------------------------------------------// 激活屏保procedure TForm1.Button1Click(Sender: TObject);begin D...
Hello from EKON 12 - Mainz Germany
David I| Sip from the Firehose |18:44:55
I’m here in Mainz - the home of Gutenberg. This morning I presented the opening keynote for our conference here.?? In the presentation I gave everyone an introduction to Embarcadero Technologies, an overview of our CodeGear and DatabaseGear ...
学习 Message(8): 使用不同的消息结构
万一| 万一的 Delphi 博客 |18:25:00
下面是同样的四段程序, 但分别使用了不同的四种消息结构: TWMMouseMove、TWMMouse、TMessage、TMsgunit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs; type TForm1 = class(TForm) prote...





冀公网安备 13098202000212号