home *** CD-ROM | disk | FTP | other *** search
/ Chip Hitware 6 B / CHIP_HITWARE6_B.iso / biuro / BaseCalculator / Sources / Value.pas < prev   
Pascal/Delphi Source File  |  1996-11-06  |  2KB  |  54 lines

  1. unit Value;
  2.  
  3. {************************************************************************
  4. *                                                                       *
  5. *                        Calculator Value Dialog Box                    *
  6. *                                                                       *
  7. ************************************************************************}
  8.  
  9. { Author:    John Zaitseff <J.Zaitseff@unsw.edu.au>
  10.   Date:      6th November, 1996.
  11.   Version:   1.2
  12.  
  13.   This file provides the user interface code to create a Value dialog
  14.   box.  Most of the "code" is actually written by Delphi from VALUE.DFM.
  15.  
  16.   This program, including this file, is under the terms of the GNU
  17.   General Public License.
  18. }
  19.  
  20. interface
  21.  
  22. uses
  23.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  24.   ExtCtrls, StdCtrls;
  25.  
  26. type
  27.   TValueWin = class(TForm)
  28.                 OKButton  : TButton;
  29.                 Panel     : TPanel;
  30.                 SDecLabel : TLabel;
  31.                 UDecLabel : TLabel;
  32.                 HexLabel  : TLabel;
  33.                 BinLabel  : TLabel;
  34.                 OctLabel  : TLabel;
  35.                 SDecEdit  : TEdit;
  36.                 UDecEdit  : TEdit;
  37.                 HexEdit   : TEdit;
  38.                 BinEdit   : TEdit;
  39.                 OctEdit   : TEdit;
  40.               private
  41.                 { Private declarations }
  42.               public
  43.                 { Public declarations }
  44.               end;
  45.  
  46. var
  47.   ValueWin : TValueWin;
  48.  
  49. implementation
  50.  
  51. {$R *.DFM}
  52.  
  53. end.
  54.