Last change
on this file was 73, checked in by chronos, 12 years ago |
- Modified: Packages are now stored as uncomporessed and are linked with relative path to project.
|
File size:
473 bytes
|
Line | |
---|
1 | unit UCDResource;
|
---|
2 |
|
---|
3 | {$mode objfpc}{$H+}
|
---|
4 |
|
---|
5 | interface
|
---|
6 |
|
---|
7 | uses
|
---|
8 | Classes, SysUtils, FileUtil, Controls;
|
---|
9 |
|
---|
10 | type
|
---|
11 |
|
---|
12 | { TDataModule2 }
|
---|
13 |
|
---|
14 | TDataModule2 = class(TDataModule)
|
---|
15 | published
|
---|
16 | ImageList1: TImageList;
|
---|
17 | { private declarations }
|
---|
18 | public
|
---|
19 | { public declarations }
|
---|
20 | end;
|
---|
21 |
|
---|
22 | var
|
---|
23 | DataModule2: TDataModule2;
|
---|
24 |
|
---|
25 | implementation
|
---|
26 |
|
---|
27 | {$R *.lfm}
|
---|
28 |
|
---|
29 | initialization
|
---|
30 |
|
---|
31 | DataModule2 := TDataModule2.Create(nil);
|
---|
32 |
|
---|
33 | finalization
|
---|
34 |
|
---|
35 | DataModule2.Free;
|
---|
36 |
|
---|
37 | end.
|
---|
38 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.