home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip: Shareware for Win 95
/
Chip-Shareware-Win95.bin
/
ostatni
/
delphi
/
delphi1
/
form3d.exe
/
FFORM3D.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1995-05-04
|
741b
|
43 lines
unit Fform3d;
interface
uses
SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
Forms, Dialogs,
Form3D, StdCtrls, Menus;
type
TForm1 = class(TForm3D)
MainMenu1: TMainMenu;
File1: TMenuItem;
Exit1: TMenuItem;
CheckBox1: TCheckBox;
Memo1: TMemo;
procedure Exit1Click(Sender: TObject);
procedure CheckBox1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
procedure TForm1.Exit1Click(Sender: TObject);
begin
Close;
end;
procedure TForm1.CheckBox1Click(Sender: TObject);
begin
AllowResize := (Sender as TCheckbox).Checked;
end;
end.