| Line | |
|---|
| 1 | unit SampleDockableForm;
|
|---|
| 2 |
|
|---|
| 3 | {$mode delphi}
|
|---|
| 4 |
|
|---|
| 5 | interface
|
|---|
| 6 |
|
|---|
| 7 | uses
|
|---|
| 8 | Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs,
|
|---|
| 9 | StdCtrls, UCDClient;
|
|---|
| 10 |
|
|---|
| 11 | type
|
|---|
| 12 |
|
|---|
| 13 | { TDockableForm }
|
|---|
| 14 |
|
|---|
| 15 | TDockableForm = class(TForm)
|
|---|
| 16 | CoolDockClient1: TCDClient;
|
|---|
| 17 | ImageList1: TImageList;
|
|---|
| 18 | Memo1: TMemo;
|
|---|
| 19 | private
|
|---|
| 20 | { private declarations }
|
|---|
| 21 | public
|
|---|
| 22 | { public declarations }
|
|---|
| 23 | end;
|
|---|
| 24 |
|
|---|
| 25 | var
|
|---|
| 26 | DockableForm: TDockableForm;
|
|---|
| 27 |
|
|---|
| 28 | implementation
|
|---|
| 29 |
|
|---|
| 30 | initialization
|
|---|
| 31 | {$I SampleDockableForm.lrs}
|
|---|
| 32 |
|
|---|
| 33 | end.
|
|---|
| 34 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.