wwdatsrc.pas

来自「infopower 4000 for delphi 2006」· PAS 代码 · 共 40 行

PAS
40
字号
unit Wwdatsrc;
{
//
// Components : TwwDataSource
//
// Copyright (c) 1995,1998 by Woll2Woll Software
//
}

interface

{$i wwIfDef.pas}

uses
  SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  Forms, Dialogs, DB;

type
  TwwDataSource = class(TDataSource)
  private
    { Private declarations }
  protected
    { Protected declarations }
  public
    { Public declarations }
  published
    { Published declarations }
  end;

procedure Register;

implementation

procedure Register;
begin
  RegisterComponents('InfoPower', [TwwDataSource]);
end;

end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?