home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1999 January
/
Chip_1999-01_cd.bin
/
zkuste
/
delphi
/
D1
/
SHAPEBUT.ZIP
/
SBDEMO1.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1996-04-06
|
1KB
|
60 lines
unit Sbdemo1;
interface
uses
SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
Forms, Dialogs, StdCtrls, ExtCtrls,Buttons
{$IFDEF WINDOWS}
,ShapeBut
{$ENDIF}
{$IFDEF WIN32}
,ShapeB32
{$ENDIF}
;
type
TForm1 = class(TForm)
Image1: TImage;
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
ShapeButton1: TShapeButton;
ShapeButton2: TShapeButton;
ShapeButton3: TShapeButton;
ShapeButton4: TShapeButton;
ShapeButton5: TShapeButton;
ShapeButton6: TShapeButton;
Shape2: TShape;
Shape1: TShape;
ShapeButton7: TShapeButton;
ShapeButton8: TShapeButton;
ShapeButton9: TShapeButton;
ShapeButton10: TShapeButton;
ShapeButton11: TShapeButton;
ShapeButton12: TShapeButton;
ShapeButton13: TShapeButton;
procedure ShapeButton5Click(Sender: TObject);
private
{ Private-Deklarationen }
public
{ Public-Deklarationen }
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
procedure TForm1.ShapeButton5Click(Sender: TObject);
begin
Close
end;
end.