home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1999 January
/
Chip_1999-01_cd.bin
/
zkuste
/
delphi
/
D1
/
GRABBAR.ZIP
/
GBarReg.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1998-09-22
|
474b
|
26 lines
{$I DFS.INC}
unit GBarReg;
interface
procedure Register;
implementation
uses
GrabBar, DFSAbout, Classes, DsgnIntf;
{ Add the components to the Delphi Component Palette. You will want to }
{ modify this so that it appears on the page of your choice. }
procedure Register;
begin
RegisterComponents('DFS', [TGrabBar]);
RegisterPropertyEditor(TypeInfo(TDFSVersion), TGrabBar, 'Version',
TDFSVersionProperty);
end;
end.