Last change
on this file since 1502 was 453, checked in by Kevin Toppenberg, 16 years ago |
Initial upload of TMG-CPRS 1.0.26.69
|
File size:
1.1 KB
|
Rev | Line | |
---|
[453] | 1 | //kt -- Modified with SourceScanner on 8/8/2007
|
---|
| 2 | unit fOMProgress;
|
---|
| 3 |
|
---|
| 4 | interface
|
---|
| 5 |
|
---|
| 6 | uses
|
---|
| 7 | Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
|
---|
| 8 | fAutoSz, StdCtrls, ORCtrls, CheckLst, ORFn, DKLang;
|
---|
| 9 |
|
---|
| 10 | type
|
---|
| 11 | TfrmOMProgress = class(TfrmAutoSz)
|
---|
| 12 | lstItems: TCheckListBox;
|
---|
| 13 | cmdStop: TORAlignButton;
|
---|
| 14 | procedure FormCreate(Sender: TObject);
|
---|
| 15 | private
|
---|
| 16 | { Private declarations }
|
---|
| 17 | public
|
---|
| 18 | { Public declarations }
|
---|
| 19 | end;
|
---|
| 20 |
|
---|
| 21 | var
|
---|
| 22 | frmOMProgress: TfrmOMProgress;
|
---|
| 23 |
|
---|
| 24 | procedure OrderSetStart(AnItemList: TStringList);
|
---|
| 25 | procedure OrderSetItemStart(AnItem: Integer; ADialog: TForm);
|
---|
| 26 | procedure OrderSetItemDone(AnItem: Integer);
|
---|
| 27 | procedure OrderSetDone;
|
---|
| 28 |
|
---|
| 29 | implementation
|
---|
| 30 |
|
---|
| 31 | {$R *.DFM}
|
---|
| 32 |
|
---|
| 33 | procedure OrderSetStart(AnItemList: TStringList);
|
---|
| 34 | begin
|
---|
| 35 | end;
|
---|
| 36 |
|
---|
| 37 | procedure OrderSetItemStart(AnItem: Integer; ADialog: TForm);
|
---|
| 38 | begin
|
---|
| 39 | end;
|
---|
| 40 |
|
---|
| 41 | procedure OrderSetItemDone(AnItem: Integer);
|
---|
| 42 | begin
|
---|
| 43 | end;
|
---|
| 44 |
|
---|
| 45 | procedure OrderSetDone;
|
---|
| 46 | begin
|
---|
| 47 | end;
|
---|
| 48 |
|
---|
| 49 | procedure TfrmOMProgress.FormCreate(Sender: TObject);
|
---|
| 50 | begin
|
---|
| 51 | inherited;
|
---|
| 52 | lstItems.Color := ReadOnlyColor;
|
---|
| 53 | end;
|
---|
| 54 |
|
---|
| 55 | end.
|
---|
Note:
See
TracBrowser
for help on using the repository browser.