自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 资源 (1)
  • 收藏
  • 关注

原创 Delphi中Interface接口的使用方法

  unit Unit1;interfaceuses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls;type   //定义接口如果接口独立成一个文件,则在应用程序中和实现程序中都要引用该接口文件;    ICar = interfa

2008-02-20 18:41:00 12948 1

原创 delphi中临界操作方法

  var    FLock:TRTLCriticalSection; //定义临界区域begin   InitializeCriticalSection(FLock); //初始化临界区域   EnterCriticalSection(FLock); //进入临界区域   LeaveCriticalSection(FLock); //退出临界区域   DeleteCr

2008-02-20 18:40:00 2297

原创 delphi中Thread线程的使用方法

  TClientDataThread = class(TThread) private public    ListBuffer :TStringList;    TargetList :TStrings;    procedure synchAddDataToControl;    procedure showme;    constructor Create(Cr

2008-02-20 18:38:00 7230

原创 delphi中Time消息的使用方法

   unit Unit1;interfaceuses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,Dialogs, StdCtrls;const TIMER_ID = 200;type TForm1 = class(TForm)    Label1: TLa

2008-02-20 18:32:00 2228

原创 delphi中Message消息的使用方法

实例1 unit Unit1;interfaceuses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls;  constWM_ME=WM_USER+100; //自定义消息; type TForm1 = class(TFo

2008-02-20 18:28:00 16194

Remoting实例代码

Remoting实例代码,含服务器端和客户端。

2007-08-21

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除