| Line | |
|---|
| 1 | unit UFormRouterboard;
|
|---|
| 2 |
|
|---|
| 3 | {$mode delphi}
|
|---|
| 4 |
|
|---|
| 5 | interface
|
|---|
| 6 |
|
|---|
| 7 | uses
|
|---|
| 8 | Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls, ExtCtrls,
|
|---|
| 9 | ComCtrls;
|
|---|
| 10 |
|
|---|
| 11 | type
|
|---|
| 12 |
|
|---|
| 13 | { TFormRouterboard }
|
|---|
| 14 |
|
|---|
| 15 | TFormRouterboard = class(TForm)
|
|---|
| 16 | ButtonUpgrade: TButton;
|
|---|
| 17 | ButtonOk: TButton;
|
|---|
| 18 | CheckBoxRouterboard: TCheckBox;
|
|---|
| 19 | LabeledEdit1: TLabeledEdit;
|
|---|
| 20 | LabeledEdit2: TLabeledEdit;
|
|---|
| 21 | StatusBar1: TStatusBar;
|
|---|
| 22 | private
|
|---|
| 23 |
|
|---|
| 24 | public
|
|---|
| 25 |
|
|---|
| 26 | end;
|
|---|
| 27 |
|
|---|
| 28 | var
|
|---|
| 29 | FormRouterboard: TFormRouterboard;
|
|---|
| 30 |
|
|---|
| 31 | implementation
|
|---|
| 32 |
|
|---|
| 33 | {$R *.lfm}
|
|---|
| 34 |
|
|---|
| 35 | end.
|
|---|
| 36 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.