|
Last change
on this file was 15, checked in by chronos, 12 years ago |
- Added: Architecture selection through main menu item Architecture.
- Added: In comparison show also full ID list for both configuration.
|
|
File size:
558 bytes
|
| Line | |
|---|
| 1 | unit UFormCompare;
|
|---|
| 2 |
|
|---|
| 3 | {$mode delphi}
|
|---|
| 4 |
|
|---|
| 5 | interface
|
|---|
| 6 |
|
|---|
| 7 | uses
|
|---|
| 8 | Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ComCtrls,
|
|---|
| 9 | StdCtrls;
|
|---|
| 10 |
|
|---|
| 11 | type
|
|---|
| 12 |
|
|---|
| 13 | { TFormCompare }
|
|---|
| 14 |
|
|---|
| 15 | TFormCompare = class(TForm)
|
|---|
| 16 | Memo1: TMemo;
|
|---|
| 17 | Memo2: TMemo;
|
|---|
| 18 | Memo3: TMemo;
|
|---|
| 19 | Memo4: TMemo;
|
|---|
| 20 | PageControl1: TPageControl;
|
|---|
| 21 | TabSheet1: TTabSheet;
|
|---|
| 22 | TabSheet2: TTabSheet;
|
|---|
| 23 | TabSheet3: TTabSheet;
|
|---|
| 24 | TabSheet4: TTabSheet;
|
|---|
| 25 | private
|
|---|
| 26 | { private declarations }
|
|---|
| 27 | public
|
|---|
| 28 | { public declarations }
|
|---|
| 29 | end;
|
|---|
| 30 |
|
|---|
| 31 | var
|
|---|
| 32 | FormCompare: TFormCompare;
|
|---|
| 33 |
|
|---|
| 34 | implementation
|
|---|
| 35 |
|
|---|
| 36 | {$R *.lfm}
|
|---|
| 37 |
|
|---|
| 38 | end.
|
|---|
| 39 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.