home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / mlregres / og32reg.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1998-09-21  |  773 b   |  27 lines

  1. unit Og32reg;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Controls, Forms, DsgnIntf;
  7.  
  8. procedure Register;
  9.  
  10. implementation
  11.  
  12. uses MLRTypes, Optigrss, StepMain, BkMain, FwdMain, OgMain, OgTools;
  13.  
  14. procedure Register;
  15. begin
  16.  RegisterComponents('AAS Statistics', [TOptimizeMLR]);
  17.  RegisterComponents('AAS Statistics', [TBackElimMLR]);
  18.  RegisterComponents('AAS Statistics', [TFwdSelectMLR]);
  19.  RegisterComponents('AAS Statistics', [TStepWiseMLR]);
  20.  RegisterPropertyEditor(TypeInfo(TAbout),TOptigress,'',TOptigressAboutProperty);
  21.  RegisterPropertyEditor(TypeInfo(string),TOptigress,'Dataset',TDatasetProperty);
  22.  RegisterPropertyEditor(TypeInfo(string),TStepWiseMLR,'FPercent',TFTableProperty);
  23.  RegisterOgUserInfo('','')
  24. end;
  25.  
  26. end.
  27.