home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / Runimage / Delphi50 / Demos / Midas / Brfcase / srvrfrm.pas < prev   
Encoding:
Pascal/Delphi Source File  |  1999-08-11  |  357 b   |  28 lines

  1. unit SrvrFrm;
  2.  
  3. {
  4.   This is the server Form of the Briefcase demo.
  5. }
  6.  
  7. interface
  8.  
  9. uses
  10.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs;
  11.  
  12. type
  13.   TForm1 = class(TForm)
  14.   private
  15.     { Private declarations }
  16.   public
  17.     { Public declarations }
  18.   end;
  19.  
  20. var
  21.   Form1: TForm1;
  22.  
  23. implementation
  24.  
  25. {$R *.DFM}
  26.  
  27. end.
  28.