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:
Pascal/Delphi Source File  |  2001-10-16  |  417 b   |  30 lines

  1. unit Unit2;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   StdCtrls;
  8.  
  9. type
  10.   TFrmSample = class(TForm)
  11.     Label1: TLabel;
  12.     txtRoundness: TEdit;
  13.     cmdOK: TButton;
  14.     cmdCancel: TButton;
  15.   private
  16.     { Private declarations }
  17.   public
  18.     { Public declarations }
  19.   end;
  20.  
  21. var
  22.   FrmSample: TFrmSample;
  23.  
  24. implementation
  25.  
  26. {$R *.DFM}
  27.  
  28.  
  29. end.
  30.