home *** CD-ROM | disk | FTP | other *** search
- unit Value;
-
- {************************************************************************
- * *
- * Calculator Value Dialog Box *
- * *
- ************************************************************************}
-
- { Author: John Zaitseff <J.Zaitseff@unsw.edu.au>
- Date: 6th November, 1996.
- Version: 1.2
-
- This file provides the user interface code to create a Value dialog
- box. Most of the "code" is actually written by Delphi from VALUE.DFM.
-
- This program, including this file, is under the terms of the GNU
- General Public License.
- }
-
- interface
-
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- ExtCtrls, StdCtrls;
-
- type
- TValueWin = class(TForm)
- OKButton : TButton;
- Panel : TPanel;
- SDecLabel : TLabel;
- UDecLabel : TLabel;
- HexLabel : TLabel;
- BinLabel : TLabel;
- OctLabel : TLabel;
- SDecEdit : TEdit;
- UDecEdit : TEdit;
- HexEdit : TEdit;
- BinEdit : TEdit;
- OctEdit : TEdit;
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- ValueWin : TValueWin;
-
- implementation
-
- {$R *.DFM}
-
- end.
-