home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / Runimage / Delphi50 / Demos / Midas / Activefm / empeditx.dpr < prev    next >
Encoding:
Text File  |  1999-08-11  |  767 b   |  32 lines

  1. library EmpEditX;
  2.  
  3. { This project demonstrates using client datasets in an ActiveForm.
  4.   The ActiveForm in this project works just like the client in the
  5.   EMPEDIT demo.  Before compiling and using this Active Library you
  6.   should compile and run the Server project from the EMPEDIT demo.
  7.  
  8.   For infomation on deploying ActiveForms, look for
  9.   "ActiveX controls:deploying" in the online help index.
  10. }
  11.  
  12. uses
  13.   ComServ,
  14.   EmpE_TLB in 'EmpE_TLB.pas',
  15.   EmpEdImp in 'EmpEdImp.pas' {EmpEditForm: TActiveForm} {EmpEditForm: CoClass},
  16.   RecError in '..\..\..\OBJREPOS\recerror.pas' {ReconcileErrorForm};
  17.  
  18. {$E ocx}
  19.  
  20. exports
  21.   DllGetClassObject,
  22.   DllCanUnloadNow,
  23.   DllRegisterServer,
  24.   DllUnregisterServer;
  25.  
  26. {$R *.TLB}
  27.  
  28. {$R *.RES}
  29.  
  30. begin
  31. end.
  32.