home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 May
/
Pcwk0597.iso
/
delphi
/
megapanl.exe
/
SAMPLE.ZIP
/
TEST4.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1996-04-30
|
621b
|
36 lines
unit Test4;
interface
uses
SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
Forms, Dialogs, ExtCtrls, MegaPanl, Mask, StdCtrls;
type
TForm4 = class(TForm)
MegaPanel1: TMegaPanel;
MegaPanel2: TMegaPanel;
MegaPanel3: TMegaPanel;
Edit2: TEdit;
MemoBox2: TMemo;
ComboBox2: TComboBox;
MaskEdit1: TMaskEdit;
Edit1: TEdit;
Memo1: TMemo;
ComboBox1: TComboBox;
MaskEdit2: TMaskEdit;
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form4: TForm4;
implementation
{$R *.DFM}
end.