home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 May
/
Pcwk0597.iso
/
delphi
/
megapanl.exe
/
SAMPLE.ZIP
/
TEST2.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1996-04-30
|
701b
|
37 lines
unit Test2;
interface
uses
SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
Forms, Dialogs, DB, DBTables, StdCtrls, DBCtrls, Mask, DBLookup,
ExtCtrls, MegaPanl, Buttons;
type
TForm2 = class(TForm)
MegaPanel1: TMegaPanel;
DBComboBox1: TDBComboBox;
DBEdit1: TDBEdit;
DBNavigator1: TDBNavigator;
DBMemo1: TDBMemo;
OrderSource: TDataSource;
Orders: TTable;
Customers: TTable;
CustomerSource: TDataSource;
DBLookupCombo1: TDBLookupCombo;
BitBtn1: TBitBtn;
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form2: TForm2;
implementation
{$R *.DFM}
end.