Last change
on this file since 66 was 45, checked in by chronos, 13 years ago |
- Modified: Forms renamed to names with Form prefix.
|
File size:
405 bytes
|
Line | |
---|
1 | unit UFormCodeTree;
|
---|
2 |
|
---|
3 | {$mode Delphi}{$H+}
|
---|
4 |
|
---|
5 | interface
|
---|
6 |
|
---|
7 | uses
|
---|
8 | Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ComCtrls;
|
---|
9 |
|
---|
10 | type
|
---|
11 |
|
---|
12 | { TFormCodeTree }
|
---|
13 |
|
---|
14 | TFormCodeTree = class(TForm)
|
---|
15 | TreeView1: TTreeView;
|
---|
16 | private
|
---|
17 | { private declarations }
|
---|
18 | public
|
---|
19 | { public declarations }
|
---|
20 | end;
|
---|
21 |
|
---|
22 | var
|
---|
23 | FormCodeTree: TFormCodeTree;
|
---|
24 |
|
---|
25 | implementation
|
---|
26 |
|
---|
27 | {$R *.lfm}
|
---|
28 |
|
---|
29 | end.
|
---|
30 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.