home *** CD-ROM | disk | FTP | other *** search
/ Prima Shareware 3 / DuCom_Prima-Shareware-3_cd1.bin / PROGRAMO / delphi / HOTKEY / HOTKINST.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1996-04-06  |  667 b   |  35 lines

  1.     Copyright 1996 by O.S.E. Objektorientierte Software Entwicklung
  2.  
  3.     Title: HotKey
  4.  
  5.     Autor: Ralf Kronemeyer
  6.  
  7.     Implements the Component-Registration
  8.                                                                                                      
  9.     Date:  01 April 1996
  10.  
  11.     Versionhistory:
  12.         01 April 1996        Release 1.0
  13.         02 April 1996   Release 1.1 // BugFix for NoteBooks in Panels
  14. }
  15.  
  16. unit Hotkinst;
  17.  
  18. interface
  19.  
  20. uses Classes,dsgnintf,HotKey,fHotEdit,fuseedit,fhotkab;
  21.  
  22. procedure Register;
  23.  
  24. implementation
  25.  
  26. procedure Register;
  27. begin
  28.     RegisterComponents('OSE', [TOSEHotKey]);
  29.     RegisterComponentEditor(TOSEHotKey,THotKeyEditor);
  30.     RegisterPropertyEditor(TypeInfo(TUseProp), nil, '', TUseProperty);
  31. end;
  32.  
  33. end.
  34.