home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2002 March
/
PCWMAR02.iso
/
software
/
turbocad
/
v8trial
/
TurboCADv8ProfessionalNoReg.exe
/
Data.Cab
/
F38975_Unit2.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
2001-10-16
|
417 b
|
30 lines
unit Unit2;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls;
type
TFrmSample = class(TForm)
Label1: TLabel;
txtRoundness: TEdit;
cmdOK: TButton;
cmdCancel: TButton;
private
{ Private declarations }
public
{ Public declarations }
end;
var
FrmSample: TFrmSample;
implementation
{$R *.DFM}
end.