source: trunk/UFormLog.pas

Last change on this file was 4, checked in by chronos, 10 years ago
  • Added: Rearrange items in tree according Depends and Condition.
  • Fixed: Wrong parsing multiline commands.
  • Added: Log and option list forms.
File size: 336 bytes
Line 
1unit UFormLog;
2
3{$mode delphi}
4
5interface
6
7uses
8 Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls;
9
10type
11
12 { TFormLog }
13
14 TFormLog = class(TForm)
15 Memo1: TMemo;
16 private
17 { private declarations }
18 public
19 { public declarations }
20 end;
21
22var
23 FormLog: TFormLog;
24
25implementation
26
27{$R *.lfm}
28
29end.
30
Note: See TracBrowser for help on using the repository browser.