source: trunk/Forms/UFormRouterboard.pas

Last change on this file was 1, checked in by chronos, 4 years ago
  • Added: Initial version.
File size: 494 bytes
Line 
1unit UFormRouterboard;
2
3{$mode delphi}
4
5interface
6
7uses
8 Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls, ExtCtrls,
9 ComCtrls;
10
11type
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
28var
29 FormRouterboard: TFormRouterboard;
30
31implementation
32
33{$R *.lfm}
34
35end.
36
Note: See TracBrowser for help on using the repository browser.