home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Runimage / Delphi50 / Demos / Ado / Rds / MAINFORM.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1999-08-11  |  542 b   |  30 lines

  1. unit MainForm;
  2.  
  3. { RDS Demo AppServer -
  4.   In this demo, the Employee table is exported
  5.   as a Raw ADO recordset object. (See AppServer.pas).
  6.   No business rules are used in this demo.
  7.   Compile and run this program before opening the RDS Client demo }
  8.  
  9. interface
  10.  
  11. uses
  12.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs;
  13.  
  14. type
  15.   TForm1 = class(TForm)
  16.   private
  17.     { Private declarations }
  18.   public
  19.     { Public declarations }
  20.   end;
  21.  
  22. var
  23.   Form1: TForm1;
  24.  
  25. implementation
  26.  
  27. {$R *.DFM}
  28.  
  29. end.
  30.