home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi 5 for Professionals
/
DELPHI5.iso
/
AddOns
/
Components
/
TEECHART
/
Delphi1_And_Delphi2
/
EXAMPLES
/
PACMAN
/
UDESIGN.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
|
1998-10-24
|
428 b
|
29 lines
unit Udesign;
interface
uses
SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
Forms, Dialogs, StdCtrls, Buttons;
type
TTeeDesign = class(TForm)
Memo1: TMemo;
BitBtn1: TBitBtn;
BitBtn2: TBitBtn;
Memo2: TMemo;
private
{ Private declarations }
public
{ Public declarations }
end;
var
TeeDesign: TTeeDesign;
implementation
{$R *.DFM}
end.