- unit ownbook;
- interface
- uses
- Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
- Dialogs, ComCtrls, StdCtrls, Buttons;
- type
- TOwnBookForm = class(TForm)
- ListView1: TListView;
- Label1: TLabel;
- BitBtn1: TBitBtn;
- i: TGroupBox;
- private
- { Private declarations }
- public
- { Public declarations }
- end;
- var
- OwnBookForm: TOwnBookForm;
- implementation
- {$R *.dfm}
- end.