Rev | Line | |
---|
[227] | 1 | unit FileManager;
|
---|
| 2 |
|
---|
| 3 | interface
|
---|
| 4 |
|
---|
| 5 | uses
|
---|
| 6 | Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
---|
[228] | 7 | Dialogs, _TemplateFileList, Menus, VirtualTrees, StdCtrls, Buttons, ComCtrls,
|
---|
| 8 | ExtCtrls;
|
---|
[227] | 9 |
|
---|
| 10 | type
|
---|
[228] | 11 | TForm_FileManager = class(TForm_TemplateFileList)
|
---|
[227] | 12 | procedure FormCreate(Sender: TObject);
|
---|
| 13 | private
|
---|
| 14 | procedure NewCon(ID: Integer);
|
---|
| 15 | public
|
---|
| 16 | end;
|
---|
| 17 |
|
---|
| 18 | implementation
|
---|
[228] | 19 |
|
---|
[227] | 20 | {$R *.dfm}
|
---|
| 21 |
|
---|
| 22 | procedure TForm_FileManager.NewCon(ID: Integer);
|
---|
| 23 | begin
|
---|
| 24 | if ID >= 0 then
|
---|
| 25 | begin
|
---|
| 26 | end;
|
---|
| 27 | end;
|
---|
| 28 |
|
---|
| 29 |
|
---|
| 30 | procedure TForm_FileManager.FormCreate(Sender: TObject);
|
---|
| 31 | begin
|
---|
| 32 | inherited;
|
---|
| 33 | OnNewConnection := NewCon;
|
---|
| 34 | UpdateConList;
|
---|
| 35 | end;
|
---|
| 36 |
|
---|
[228] | 37 |
|
---|
[227] | 38 | end.
|
---|
[228] | 39 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.