home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 May
/
Pcwk0597.iso
/
delphi
/
cbsuite.lzh
/
SU1CP_32.ZIP
/
GRAPHIT.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1997-12-30
|
405b
|
35 lines
{
CBGraph - Graph Component
Copyright (c), 1996, Calitz Bros. All rights reserved
}
unit Graphit;
interface
uses
Classes,
DsgnIntf,
Dialogs,
SysUtils,
cb_grfun,
cb_dbgr,
cb_lab,
cb_graph;
procedure Register;
implementation
procedure Register;
begin
RegisterComponents('Graphit',[TCB_Graph, TCB_DBGraph, TCB_Label]);
end;
end.