ownbook.pas
上传用户:blmaxia
上传日期:2010-02-17
资源大小:657k
文件大小:0k
源码类别:

Delphi/CppBuilder

开发平台:

Delphi

  1. unit ownbook;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  5.   Dialogs, ComCtrls, StdCtrls, Buttons;
  6. type
  7.   TOwnBookForm = class(TForm)
  8.     ListView1: TListView;
  9.     Label1: TLabel;
  10.     BitBtn1: TBitBtn;
  11.     i: TGroupBox;
  12.   private
  13.     { Private declarations }
  14.   public
  15.     { Public declarations }
  16.   end;
  17. var
  18.   OwnBookForm: TOwnBookForm;
  19. implementation
  20. {$R *.dfm}
  21. end.