home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Plus SuperCD (UK) 2000 March
/
pcp161b.iso
/
full
/
delphi
/
DELPHI16
/
RUNIMAGE
/
DELPHI
/
DEMOS
/
DB
/
TWOFORMS
/
DETAILS.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
|
1995-08-24
|
401 b
|
25 lines
unit Details;
interface
uses
WinTypes, WinProcs, Classes, Graphics, Forms, Controls,
StdCtrls, DB, DBCtrls, Buttons, Mask;
type
TDetailView = class(TForm)
Label1: TLabel;
Population: TLabel;
DataSource1: TDataSource;
DBEdit1: TDBEdit;
DBEdit2: TDBEdit;
DBNavigator1: TDBNavigator;
Button1: TButton;
end;
implementation
{$R *.DFM}
end.