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