|
Last change
on this file was 73, checked in by chronos, 13 years ago |
- Modified: Packages are now stored as uncomporessed and are linked with relative path to project.
|
|
File size:
371 bytes
|
| Line | |
|---|
| 1 | unit ULogForm;
|
|---|
| 2 |
|
|---|
| 3 | {$mode objfpc}{$H+}
|
|---|
| 4 |
|
|---|
| 5 | interface
|
|---|
| 6 |
|
|---|
| 7 | uses
|
|---|
| 8 | Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls;
|
|---|
| 9 |
|
|---|
| 10 | type
|
|---|
| 11 |
|
|---|
| 12 | { TLogForm }
|
|---|
| 13 |
|
|---|
| 14 | TLogForm = class(TForm)
|
|---|
| 15 | Memo1: TMemo;
|
|---|
| 16 | private
|
|---|
| 17 | { private declarations }
|
|---|
| 18 | public
|
|---|
| 19 | { public declarations }
|
|---|
| 20 | end;
|
|---|
| 21 |
|
|---|
| 22 | var
|
|---|
| 23 | LogForm: TLogForm;
|
|---|
| 24 |
|
|---|
| 25 | implementation
|
|---|
| 26 |
|
|---|
| 27 | {$R *.lfm}
|
|---|
| 28 |
|
|---|
| 29 | end.
|
|---|
| 30 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.