home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / borland / cb / setup / cbuilder / data.z / SYSREG.PAS < prev    next >
Pascal/Delphi Source File  |  1997-02-28  |  823b  |  28 lines

  1. unit SysReg;
  2.  
  3. interface
  4.  
  5. uses DsgnIntf, Classes;
  6.  
  7. procedure Register;
  8.  
  9. implementation
  10.  
  11. uses SysUtils, Dialogs, FileCtrl, FiltEdit, StdCtrls, ExtCtrls, LibConst,
  12.   MPlayer, Forms;
  13.  
  14. procedure Register;
  15. begin
  16.   RegisterComponents(LoadStr(srDialogs), [TOpenDialog, TSaveDialog, TFontDialog,
  17.     TColorDialog, TPrintDialog, TPrinterSetupDialog, TFindDialog,
  18.     TReplaceDialog]);
  19.   RegisterComponents(LoadStr(srSystem), [TTimer, TPaintBox, TFileListBox,
  20.     TDirectoryListBox, TDriveComboBox, TFilterComboBox, TMediaPlayer]);
  21.  
  22.   RegisterPropertyEditor(TypeInfo(string), TFilterComboBox, 'Filter', TFilterProperty);
  23.   RegisterPropertyEditor(TypeInfo(string), TOpenDialog, 'Filter', TFilterProperty);
  24.   RegisterPropertyEditor(TypeInfo(string), TMediaPlayer, 'Filename', TMPFilenameProperty);
  25. end;
  26.  
  27. end.
  28.