home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 September
/
Chip_2002-09_cd1.bin
/
zkuste
/
delphi
/
kompon
/
d456
/
EKRTF.ZIP
/
MainDemo
/
UCustSel.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
2000-09-24
|
460b
|
30 lines
unit UCustSel;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, unit2,
StdCtrls, Grids, DBGrids, Db;
type
TCustSel = class(TForm)
DSCust: TDataSource;
CustGrid: TDBGrid;
OkBtn: TButton;
Label1: TLabel;
CanBtn: TButton;
private
{ Private declarations }
public
{ Public declarations }
end;
var
CustSel: TCustSel;
implementation
{$R *.DFM}
end.